LGBTQ+ Characters
lgbtqcharacterswiki
https://lgbtqcharacters.miraheze.org/wiki/Main_Page
MediaWiki 1.40.1
first-letter
Media
Special
Talk
User
User talk
LGBTQ+ Characters
LGBTQ+ Characters talk
File
File talk
MediaWiki
MediaWiki talk
Template
Template talk
Help
Help talk
Category
Category talk
Module
Module talk
Module:Distinguish
828
44
83
2018-04-01T10:06:10Z
Template:Infobox>Galobtter
0
fixed with text and selfref
Scribunto
text/plain
local mHatnote = require('Module:Hatnote')
local mHatlist = require('Module:Hatnote list')
local mArguments --initialize lazily
local mTableTools --initialize lazily
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local p = {}
function p.distinguish(frame)
mArguments = require('Module:Arguments')
mTableTools = require('Module:TableTools')
local args = mArguments.getArgs(frame)
local selfref = args.selfref
local text = args.text
args = mTableTools.compressSparseArray(args)
return p._distinguish(args, text, selfref)
end
function p._distinguish(args, text, selfref)
checkType("_distinguish", 1, args, 'table')
if #args == 0 and not text then return '' end
local text = string.format(
'Not to be confused with %s.',
text or mHatlist.orList(args, true)
)
hnOptions = {selfref = selfref}
return mHatnote._hatnote(text, hnOptions)
end
return p
0364d14af01fc656ad1d898c5036fbd12a7ca938
Template:Infobox
10
20
35
2018-08-15T18:33:36Z
Template:Infobox>Primefac
0
Undid revision 855063393 by [[Special:Contributions/Jdlrobson|Jdlrobson]] ([[User talk:Jdlrobson|talk]]) rather problematic change mentioned [[Template_talk:Infobox#Using_template_styles_to_reduce_technical_debt_inside_mobile_skin|on talk page]], reverting until it can be sorted
wikitext
text/x-wiki
{{#invoke:Infobox|infobox}}<includeonly>{{template other|{{#ifeq:{{PAGENAME}}|Infobox||{{#ifeq:{{str left|{{SUBPAGENAME}}|7}}|Infobox|[[Category:Infobox templates|{{remove first word|{{SUBPAGENAME}}}}]]}}}}|}}</includeonly><noinclude>
{{documentation}}
<!-- Categories go in the /doc subpage, and interwikis go in Wikidata. -->
</noinclude>
817a9f5b6524eced06a57bd1d5fd7179f9369bf2
Template:Nobold
10
30
55
2018-10-23T17:15:13Z
Template:Infobox>Frietjes
0
wikitext
text/x-wiki
<templatestyles src="Nobold/styles.css"/><span class="nobold">{{{1}}}</span><noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
9c92b5951772bb26ca0fbe9256418b65e47700dd
Template:Template other
10
40
75
2018-12-16T22:06:25Z
Template:Infobox>Amorymeltzer
0
Changed protection level for "[[Template:Template other]]": [[WP:High-risk templates|Highly visible template]]: Transclusion count has increased dramatically ([Edit=Require administrator access] (indefinite) [Move=Require administrator access] (indefinite))
wikitext
text/x-wiki
{{#switch:
<!--If no or empty "demospace" parameter then detect namespace-->
{{#if:{{{demospace|}}}
| {{lc: {{{demospace}}} }} <!--Use lower case "demospace"-->
| {{#ifeq:{{NAMESPACE}}|{{ns:Template}}
| template
| other
}}
}}
| template = {{{1|}}}
| other
| #default = {{{2|}}}
}}<!--End switch--><noinclude>
{{documentation}}
<!-- Add categories and interwikis to the /doc subpage, not here! -->
</noinclude>
06fb13d264df967b5232141067eb7d2b67372d76
Template:Nobold/styles.css
10
31
57
2019-03-03T23:43:41Z
Template:Infobox>Pppery
0
Adding protection template
text
text/plain
/* {{pp-template}} */
/* Styling for Template:Nobold */
.nobold {
font-weight: normal;
}
83e5f0adacf8c7984251f1fd9d11ed82ebaadf03
Template:Clc
10
90
175
2019-04-24T04:30:59Z
Template:Infobox>JJMC89
0
actual template is in the category
wikitext
text/x-wiki
#REDIRECT [[Template:Category link with count]]
02280e2ab57b544236e11f913e3759c5781ca9d5
Module:Arguments
828
23
41
2020-04-01T06:12:40Z
Template:Infobox>MusikAnimal
0
1 revision imported
Scribunto
text/plain
-- This module provides easy processing of arguments passed to Scribunto from
-- #invoke. It is intended for use by other Lua modules, and should not be
-- called from #invoke directly.
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local arguments = {}
-- Generate four different tidyVal functions, so that we don't have to check the
-- options every time we call it.
local function tidyValDefault(key, val)
if type(val) == 'string' then
val = val:match('^%s*(.-)%s*$')
if val == '' then
return nil
else
return val
end
else
return val
end
end
local function tidyValTrimOnly(key, val)
if type(val) == 'string' then
return val:match('^%s*(.-)%s*$')
else
return val
end
end
local function tidyValRemoveBlanksOnly(key, val)
if type(val) == 'string' then
if val:find('%S') then
return val
else
return nil
end
else
return val
end
end
local function tidyValNoChange(key, val)
return val
end
local function matchesTitle(given, title)
local tp = type( given )
return (tp == 'string' or tp == 'number') and mw.title.new( given ).prefixedText == title
end
local translate_mt = { __index = function(t, k) return k end }
function arguments.getArgs(frame, options)
checkType('getArgs', 1, frame, 'table', true)
checkType('getArgs', 2, options, 'table', true)
frame = frame or {}
options = options or {}
--[[
-- Set up argument translation.
--]]
options.translate = options.translate or {}
if getmetatable(options.translate) == nil then
setmetatable(options.translate, translate_mt)
end
if options.backtranslate == nil then
options.backtranslate = {}
for k,v in pairs(options.translate) do
options.backtranslate[v] = k
end
end
if options.backtranslate and getmetatable(options.backtranslate) == nil then
setmetatable(options.backtranslate, {
__index = function(t, k)
if options.translate[k] ~= k then
return nil
else
return k
end
end
})
end
--[[
-- Get the argument tables. If we were passed a valid frame object, get the
-- frame arguments (fargs) and the parent frame arguments (pargs), depending
-- on the options set and on the parent frame's availability. If we weren't
-- passed a valid frame object, we are being called from another Lua module
-- or from the debug console, so assume that we were passed a table of args
-- directly, and assign it to a new variable (luaArgs).
--]]
local fargs, pargs, luaArgs
if type(frame.args) == 'table' and type(frame.getParent) == 'function' then
if options.wrappers then
--[[
-- The wrappers option makes Module:Arguments look up arguments in
-- either the frame argument table or the parent argument table, but
-- not both. This means that users can use either the #invoke syntax
-- or a wrapper template without the loss of performance associated
-- with looking arguments up in both the frame and the parent frame.
-- Module:Arguments will look up arguments in the parent frame
-- if it finds the parent frame's title in options.wrapper;
-- otherwise it will look up arguments in the frame object passed
-- to getArgs.
--]]
local parent = frame:getParent()
if not parent then
fargs = frame.args
else
local title = parent:getTitle():gsub('/sandbox$', '')
local found = false
if matchesTitle(options.wrappers, title) then
found = true
elseif type(options.wrappers) == 'table' then
for _,v in pairs(options.wrappers) do
if matchesTitle(v, title) then
found = true
break
end
end
end
-- We test for false specifically here so that nil (the default) acts like true.
if found or options.frameOnly == false then
pargs = parent.args
end
if not found or options.parentOnly == false then
fargs = frame.args
end
end
else
-- options.wrapper isn't set, so check the other options.
if not options.parentOnly then
fargs = frame.args
end
if not options.frameOnly then
local parent = frame:getParent()
pargs = parent and parent.args or nil
end
end
if options.parentFirst then
fargs, pargs = pargs, fargs
end
else
luaArgs = frame
end
-- Set the order of precedence of the argument tables. If the variables are
-- nil, nothing will be added to the table, which is how we avoid clashes
-- between the frame/parent args and the Lua args.
local argTables = {fargs}
argTables[#argTables + 1] = pargs
argTables[#argTables + 1] = luaArgs
--[[
-- Generate the tidyVal function. If it has been specified by the user, we
-- use that; if not, we choose one of four functions depending on the
-- options chosen. This is so that we don't have to call the options table
-- every time the function is called.
--]]
local tidyVal = options.valueFunc
if tidyVal then
if type(tidyVal) ~= 'function' then
error(
"bad value assigned to option 'valueFunc'"
.. '(function expected, got '
.. type(tidyVal)
.. ')',
2
)
end
elseif options.trim ~= false then
if options.removeBlanks ~= false then
tidyVal = tidyValDefault
else
tidyVal = tidyValTrimOnly
end
else
if options.removeBlanks ~= false then
tidyVal = tidyValRemoveBlanksOnly
else
tidyVal = tidyValNoChange
end
end
--[[
-- Set up the args, metaArgs and nilArgs tables. args will be the one
-- accessed from functions, and metaArgs will hold the actual arguments. Nil
-- arguments are memoized in nilArgs, and the metatable connects all of them
-- together.
--]]
local args, metaArgs, nilArgs, metatable = {}, {}, {}, {}
setmetatable(args, metatable)
local function mergeArgs(tables)
--[[
-- Accepts multiple tables as input and merges their keys and values
-- into one table. If a value is already present it is not overwritten;
-- tables listed earlier have precedence. We are also memoizing nil
-- values, which can be overwritten if they are 's' (soft).
--]]
for _, t in ipairs(tables) do
for key, val in pairs(t) do
if metaArgs[key] == nil and nilArgs[key] ~= 'h' then
local tidiedVal = tidyVal(key, val)
if tidiedVal == nil then
nilArgs[key] = 's'
else
metaArgs[key] = tidiedVal
end
end
end
end
end
--[[
-- Define metatable behaviour. Arguments are memoized in the metaArgs table,
-- and are only fetched from the argument tables once. Fetching arguments
-- from the argument tables is the most resource-intensive step in this
-- module, so we try and avoid it where possible. For this reason, nil
-- arguments are also memoized, in the nilArgs table. Also, we keep a record
-- in the metatable of when pairs and ipairs have been called, so we do not
-- run pairs and ipairs on the argument tables more than once. We also do
-- not run ipairs on fargs and pargs if pairs has already been run, as all
-- the arguments will already have been copied over.
--]]
metatable.__index = function (t, key)
--[[
-- Fetches an argument when the args table is indexed. First we check
-- to see if the value is memoized, and if not we try and fetch it from
-- the argument tables. When we check memoization, we need to check
-- metaArgs before nilArgs, as both can be non-nil at the same time.
-- If the argument is not present in metaArgs, we also check whether
-- pairs has been run yet. If pairs has already been run, we return nil.
-- This is because all the arguments will have already been copied into
-- metaArgs by the mergeArgs function, meaning that any other arguments
-- must be nil.
--]]
if type(key) == 'string' then
key = options.translate[key]
end
local val = metaArgs[key]
if val ~= nil then
return val
elseif metatable.donePairs or nilArgs[key] then
return nil
end
for _, argTable in ipairs(argTables) do
local argTableVal = tidyVal(key, argTable[key])
if argTableVal ~= nil then
metaArgs[key] = argTableVal
return argTableVal
end
end
nilArgs[key] = 'h'
return nil
end
metatable.__newindex = function (t, key, val)
-- This function is called when a module tries to add a new value to the
-- args table, or tries to change an existing value.
if type(key) == 'string' then
key = options.translate[key]
end
if options.readOnly then
error(
'could not write to argument table key "'
.. tostring(key)
.. '"; the table is read-only',
2
)
elseif options.noOverwrite and args[key] ~= nil then
error(
'could not write to argument table key "'
.. tostring(key)
.. '"; overwriting existing arguments is not permitted',
2
)
elseif val == nil then
--[[
-- If the argument is to be overwritten with nil, we need to erase
-- the value in metaArgs, so that __index, __pairs and __ipairs do
-- not use a previous existing value, if present; and we also need
-- to memoize the nil in nilArgs, so that the value isn't looked
-- up in the argument tables if it is accessed again.
--]]
metaArgs[key] = nil
nilArgs[key] = 'h'
else
metaArgs[key] = val
end
end
local function translatenext(invariant)
local k, v = next(invariant.t, invariant.k)
invariant.k = k
if k == nil then
return nil
elseif type(k) ~= 'string' or not options.backtranslate then
return k, v
else
local backtranslate = options.backtranslate[k]
if backtranslate == nil then
-- Skip this one. This is a tail call, so this won't cause stack overflow
return translatenext(invariant)
else
return backtranslate, v
end
end
end
metatable.__pairs = function ()
-- Called when pairs is run on the args table.
if not metatable.donePairs then
mergeArgs(argTables)
metatable.donePairs = true
end
return translatenext, { t = metaArgs }
end
local function inext(t, i)
-- This uses our __index metamethod
local v = t[i + 1]
if v ~= nil then
return i + 1, v
end
end
metatable.__ipairs = function (t)
-- Called when ipairs is run on the args table.
return inext, t, 0
end
return args
end
return arguments
3134ecce8429b810d445e29eae115e2ae4c36c53
Module:Yesno
828
22
39
2020-04-01T06:27:55Z
Template:Infobox>MusikAnimal
0
Undid revision 948472533 by [[Special:Contributions/w>Vogone|w>Vogone]] ([[User talk:w>Vogone|talk]])
Scribunto
text/plain
-- Function allowing for consistent treatment of boolean-like wikitext input.
-- It works similarly to the template {{yesno}}.
return function (val, default)
-- If your wiki uses non-ascii characters for any of "yes", "no", etc., you
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
-- following line.
val = type(val) == 'string' and val:lower() or val
if val == nil then
return nil
elseif val == true
or val == 'yes'
or val == 'y'
or val == 'true'
or val == 't'
or val == 'on'
or tonumber(val) == 1
then
return true
elseif val == false
or val == 'no'
or val == 'n'
or val == 'false'
or val == 'f'
or val == 'off'
or tonumber(val) == 0
then
return false
else
return default
end
end
f767643e7d12126d020d88d662a3dd057817b9dc
Module:File link
828
47
89
2020-04-01T06:31:54Z
Template:Infobox>MusikAnimal
0
Undid revision 948472508 by [[Special:Contributions/w>IPad365|w>IPad365]] ([[User talk:w>IPad365|talk]])
Scribunto
text/plain
-- This module provides a library for formatting file wikilinks.
local yesno = require('Module:Yesno')
local checkType = require('libraryUtil').checkType
local p = {}
function p._main(args)
checkType('_main', 1, args, 'table')
-- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our
-- own function to get the right error level.
local function checkArg(key, val, level)
if type(val) ~= 'string' then
error(string.format(
"type error in '%s' parameter of '_main' (expected string, got %s)",
key, type(val)
), level)
end
end
local ret = {}
-- Adds a positional parameter to the buffer.
local function addPositional(key)
local val = args[key]
if not val then
return nil
end
checkArg(key, val, 4)
ret[#ret + 1] = val
end
-- Adds a named parameter to the buffer. We assume that the parameter name
-- is the same as the argument key.
local function addNamed(key)
local val = args[key]
if not val then
return nil
end
checkArg(key, val, 4)
ret[#ret + 1] = key .. '=' .. val
end
-- Filename
checkArg('file', args.file, 3)
ret[#ret + 1] = 'File:' .. args.file
-- Format
if args.format then
checkArg('format', args.format)
if args.formatfile then
checkArg('formatfile', args.formatfile)
ret[#ret + 1] = args.format .. '=' .. args.formatfile
else
ret[#ret + 1] = args.format
end
end
-- Border
if yesno(args.border) then
ret[#ret + 1] = 'border'
end
addPositional('location')
addPositional('alignment')
addPositional('size')
addNamed('upright')
addNamed('link')
addNamed('alt')
addNamed('page')
addNamed('class')
addNamed('lang')
addNamed('start')
addNamed('end')
addNamed('thumbtime')
addPositional('caption')
return string.format('[[%s]]', table.concat(ret, '|'))
end
function p.main(frame)
local origArgs = require('Module:Arguments').getArgs(frame, {
wrappers = 'Template:File link'
})
if not origArgs.file then
error("'file' parameter missing from [[Template:File link]]", 0)
end
-- Copy the arguments that were passed to a new table to avoid looking up
-- every possible parameter in the frame object.
local args = {}
for k, v in pairs(origArgs) do
-- Make _BLANK a special argument to add a blank parameter. For use in
-- conditional templates etc. it is useful for blank arguments to be
-- ignored, but we still need a way to specify them so that we can do
-- things like [[File:Example.png|link=]].
if v == '_BLANK' then
v = ''
end
args[k] = v
end
return p._main(args)
end
return p
66925f088d11530f2482f04181a3baaaa0ad3d0c
Template:Tlf
10
72
139
2020-04-13T14:42:57Z
Template:Infobox>Primefac
0
Primefac moved page [[Template:Tlf]] to [[Template:Template link with link off]]: full name to indicate what it does
wikitext
text/x-wiki
#REDIRECT [[Template:Template link with link off]]
{{Redirect category shell|
{{R from move}}
}}
52759e1d3f7c9aa4a03d0b7d4f84f4c6adf53edf
Template:Sidebar
10
43
81
2020-06-04T02:43:13Z
Template:Infobox>Primefac
0
TFD closed as keep ([[WP:XFDC|XFDcloser]])
wikitext
text/x-wiki
{{#invoke:Sidebar|sidebar}}<noinclude>
{{documentation}}</noinclude>
ab2498000a99daf324f656b0badd187b4a3e2b42
Module:String
828
33
61
2020-08-02T15:49:42Z
Template:Infobox>RexxS
0
separate annotations for str.match from those for str._match
Scribunto
text/plain
--[[
This module is intended to provide access to basic string functions.
Most of the functions provided here can be invoked with named parameters,
unnamed parameters, or a mixture. If named parameters are used, Mediawiki will
automatically remove any leading or trailing whitespace from the parameter.
Depending on the intended use, it may be advantageous to either preserve or
remove such whitespace.
Global options
ignore_errors: If set to 'true' or 1, any error condition will result in
an empty string being returned rather than an error message.
error_category: If an error occurs, specifies the name of a category to
include with the error message. The default category is
[Category:Errors reported by Module String].
no_category: If set to 'true' or 1, no category will be added if an error
is generated.
Unit tests for this module are available at Module:String/tests.
]]
local str = {}
--[[
len
This function returns the length of the target string.
Usage:
{{#invoke:String|len|target_string|}}
OR
{{#invoke:String|len|s=target_string}}
Parameters
s: The string whose length to report
If invoked using named parameters, Mediawiki will automatically remove any leading or
trailing whitespace from the target string.
]]
function str.len( frame )
local new_args = str._getParameters( frame.args, {'s'} )
local s = new_args['s'] or ''
return mw.ustring.len( s )
end
--[[
sub
This function returns a substring of the target string at specified indices.
Usage:
{{#invoke:String|sub|target_string|start_index|end_index}}
OR
{{#invoke:String|sub|s=target_string|i=start_index|j=end_index}}
Parameters
s: The string to return a subset of
i: The fist index of the substring to return, defaults to 1.
j: The last index of the string to return, defaults to the last character.
The first character of the string is assigned an index of 1. If either i or j
is a negative value, it is interpreted the same as selecting a character by
counting from the end of the string. Hence, a value of -1 is the same as
selecting the last character of the string.
If the requested indices are out of range for the given string, an error is
reported.
]]
function str.sub( frame )
local new_args = str._getParameters( frame.args, { 's', 'i', 'j' } )
local s = new_args['s'] or ''
local i = tonumber( new_args['i'] ) or 1
local j = tonumber( new_args['j'] ) or -1
local len = mw.ustring.len( s )
-- Convert negatives for range checking
if i < 0 then
i = len + i + 1
end
if j < 0 then
j = len + j + 1
end
if i > len or j > len or i < 1 or j < 1 then
return str._error( 'String subset index out of range' )
end
if j < i then
return str._error( 'String subset indices out of order' )
end
return mw.ustring.sub( s, i, j )
end
--[[
This function implements that features of {{str sub old}} and is kept in order
to maintain these older templates.
]]
function str.sublength( frame )
local i = tonumber( frame.args.i ) or 0
local len = tonumber( frame.args.len )
return mw.ustring.sub( frame.args.s, i + 1, len and ( i + len ) )
end
--[[
_match
This function returns a substring from the source string that matches a
specified pattern. It is exported for use in other modules
Usage:
strmatch = require("Module:String")._match
sresult = strmatch( s, pattern, start, match, plain, nomatch )
Parameters
s: The string to search
pattern: The pattern or string to find within the string
start: The index within the source string to start the search. The first
character of the string has index 1. Defaults to 1.
match: In some cases it may be possible to make multiple matches on a single
string. This specifies which match to return, where the first match is
match= 1. If a negative number is specified then a match is returned
counting from the last match. Hence match = -1 is the same as requesting
the last match. Defaults to 1.
plain: A flag indicating that the pattern should be understood as plain
text. Defaults to false.
nomatch: If no match is found, output the "nomatch" value rather than an error.
For information on constructing Lua patterns, a form of [regular expression], see:
* http://www.lua.org/manual/5.1/manual.html#5.4.1
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Patterns
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Ustring_patterns
]]
-- This sub-routine is exported for use in other modules
function str._match( s, pattern, start, match_index, plain_flag, nomatch )
if s == '' then
return str._error( 'Target string is empty' )
end
if pattern == '' then
return str._error( 'Pattern string is empty' )
end
start = tonumber(start) or 1
if math.abs(start) < 1 or math.abs(start) > mw.ustring.len( s ) then
return str._error( 'Requested start is out of range' )
end
if match_index == 0 then
return str._error( 'Match index is out of range' )
end
if plain_flag then
pattern = str._escapePattern( pattern )
end
local result
if match_index == 1 then
-- Find first match is simple case
result = mw.ustring.match( s, pattern, start )
else
if start > 1 then
s = mw.ustring.sub( s, start )
end
local iterator = mw.ustring.gmatch(s, pattern)
if match_index > 0 then
-- Forward search
for w in iterator do
match_index = match_index - 1
if match_index == 0 then
result = w
break
end
end
else
-- Reverse search
local result_table = {}
local count = 1
for w in iterator do
result_table[count] = w
count = count + 1
end
result = result_table[ count + match_index ]
end
end
if result == nil then
if nomatch == nil then
return str._error( 'Match not found' )
else
return nomatch
end
else
return result
end
end
--[[
match
This function returns a substring from the source string that matches a
specified pattern.
Usage:
{{#invoke:String|match|source_string|pattern_string|start_index|match_number|plain_flag|nomatch_output}}
OR
{{#invoke:String|match|s=source_string|pattern=pattern_string|start=start_index
|match=match_number|plain=plain_flag|nomatch=nomatch_output}}
Parameters
s: The string to search
pattern: The pattern or string to find within the string
start: The index within the source string to start the search. The first
character of the string has index 1. Defaults to 1.
match: In some cases it may be possible to make multiple matches on a single
string. This specifies which match to return, where the first match is
match= 1. If a negative number is specified then a match is returned
counting from the last match. Hence match = -1 is the same as requesting
the last match. Defaults to 1.
plain: A flag indicating that the pattern should be understood as plain
text. Defaults to false.
nomatch: If no match is found, output the "nomatch" value rather than an error.
If invoked using named parameters, Mediawiki will automatically remove any leading or
trailing whitespace from each string. In some circumstances this is desirable, in
other cases one may want to preserve the whitespace.
If the match_number or start_index are out of range for the string being queried, then
this function generates an error. An error is also generated if no match is found.
If one adds the parameter ignore_errors=true, then the error will be suppressed and
an empty string will be returned on any failure.
For information on constructing Lua patterns, a form of [regular expression], see:
* http://www.lua.org/manual/5.1/manual.html#5.4.1
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Patterns
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Ustring_patterns
]]
-- This is the entry point for #invoke:String|match
function str.match( frame )
local new_args = str._getParameters( frame.args, {'s', 'pattern', 'start', 'match', 'plain', 'nomatch'} )
local s = new_args['s'] or ''
local start = tonumber( new_args['start'] ) or 1
local plain_flag = str._getBoolean( new_args['plain'] or false )
local pattern = new_args['pattern'] or ''
local match_index = math.floor( tonumber(new_args['match']) or 1 )
local nomatch = new_args['nomatch']
return str._match( s, pattern, start, match_index, plain_flag, nomatch )
end
--[[
pos
This function returns a single character from the target string at position pos.
Usage:
{{#invoke:String|pos|target_string|index_value}}
OR
{{#invoke:String|pos|target=target_string|pos=index_value}}
Parameters
target: The string to search
pos: The index for the character to return
If invoked using named parameters, Mediawiki will automatically remove any leading or
trailing whitespace from the target string. In some circumstances this is desirable, in
other cases one may want to preserve the whitespace.
The first character has an index value of 1.
If one requests a negative value, this function will select a character by counting backwards
from the end of the string. In other words pos = -1 is the same as asking for the last character.
A requested value of zero, or a value greater than the length of the string returns an error.
]]
function str.pos( frame )
local new_args = str._getParameters( frame.args, {'target', 'pos'} )
local target_str = new_args['target'] or ''
local pos = tonumber( new_args['pos'] ) or 0
if pos == 0 or math.abs(pos) > mw.ustring.len( target_str ) then
return str._error( 'String index out of range' )
end
return mw.ustring.sub( target_str, pos, pos )
end
--[[
str_find
This function duplicates the behavior of {{str_find}}, including all of its quirks.
This is provided in order to support existing templates, but is NOT RECOMMENDED for
new code and templates. New code is recommended to use the "find" function instead.
Returns the first index in "source" that is a match to "target". Indexing is 1-based,
and the function returns -1 if the "target" string is not present in "source".
Important Note: If the "target" string is empty / missing, this function returns a
value of "1", which is generally unexpected behavior, and must be accounted for
separatetly.
]]
function str.str_find( frame )
local new_args = str._getParameters( frame.args, {'source', 'target'} )
local source_str = new_args['source'] or ''
local target_str = new_args['target'] or ''
if target_str == '' then
return 1
end
local start = mw.ustring.find( source_str, target_str, 1, true )
if start == nil then
start = -1
end
return start
end
--[[
find
This function allows one to search for a target string or pattern within another
string.
Usage:
{{#invoke:String|find|source_str|target_string|start_index|plain_flag}}
OR
{{#invoke:String|find|source=source_str|target=target_str|start=start_index|plain=plain_flag}}
Parameters
source: The string to search
target: The string or pattern to find within source
start: The index within the source string to start the search, defaults to 1
plain: Boolean flag indicating that target should be understood as plain
text and not as a Lua style regular expression, defaults to true
If invoked using named parameters, Mediawiki will automatically remove any leading or
trailing whitespace from the parameter. In some circumstances this is desirable, in
other cases one may want to preserve the whitespace.
This function returns the first index >= "start" where "target" can be found
within "source". Indices are 1-based. If "target" is not found, then this
function returns 0. If either "source" or "target" are missing / empty, this
function also returns 0.
This function should be safe for UTF-8 strings.
]]
function str.find( frame )
local new_args = str._getParameters( frame.args, {'source', 'target', 'start', 'plain' } )
local source_str = new_args['source'] or ''
local pattern = new_args['target'] or ''
local start_pos = tonumber(new_args['start']) or 1
local plain = new_args['plain'] or true
if source_str == '' or pattern == '' then
return 0
end
plain = str._getBoolean( plain )
local start = mw.ustring.find( source_str, pattern, start_pos, plain )
if start == nil then
start = 0
end
return start
end
--[[
replace
This function allows one to replace a target string or pattern within another
string.
Usage:
{{#invoke:String|replace|source_str|pattern_string|replace_string|replacement_count|plain_flag}}
OR
{{#invoke:String|replace|source=source_string|pattern=pattern_string|replace=replace_string|
count=replacement_count|plain=plain_flag}}
Parameters
source: The string to search
pattern: The string or pattern to find within source
replace: The replacement text
count: The number of occurences to replace, defaults to all.
plain: Boolean flag indicating that pattern should be understood as plain
text and not as a Lua style regular expression, defaults to true
]]
function str.replace( frame )
local new_args = str._getParameters( frame.args, {'source', 'pattern', 'replace', 'count', 'plain' } )
local source_str = new_args['source'] or ''
local pattern = new_args['pattern'] or ''
local replace = new_args['replace'] or ''
local count = tonumber( new_args['count'] )
local plain = new_args['plain'] or true
if source_str == '' or pattern == '' then
return source_str
end
plain = str._getBoolean( plain )
if plain then
pattern = str._escapePattern( pattern )
replace = mw.ustring.gsub( replace, "%%", "%%%%" ) --Only need to escape replacement sequences.
end
local result
if count ~= nil then
result = mw.ustring.gsub( source_str, pattern, replace, count )
else
result = mw.ustring.gsub( source_str, pattern, replace )
end
return result
end
--[[
simple function to pipe string.rep to templates.
]]
function str.rep( frame )
local repetitions = tonumber( frame.args[2] )
if not repetitions then
return str._error( 'function rep expects a number as second parameter, received "' .. ( frame.args[2] or '' ) .. '"' )
end
return string.rep( frame.args[1] or '', repetitions )
end
--[[
escapePattern
This function escapes special characters from a Lua string pattern. See [1]
for details on how patterns work.
[1] https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Patterns
Usage:
{{#invoke:String|escapePattern|pattern_string}}
Parameters
pattern_string: The pattern string to escape.
]]
function str.escapePattern( frame )
local pattern_str = frame.args[1]
if not pattern_str then
return str._error( 'No pattern string specified' )
end
local result = str._escapePattern( pattern_str )
return result
end
--[[
count
This function counts the number of occurrences of one string in another.
]]
function str.count(frame)
local args = str._getParameters(frame.args, {'source', 'pattern', 'plain'})
local source = args.source or ''
local pattern = args.pattern or ''
local plain = str._getBoolean(args.plain or true)
if plain then
pattern = str._escapePattern(pattern)
end
local _, count = mw.ustring.gsub(source, pattern, '')
return count
end
--[[
endswith
This function determines whether a string ends with another string.
]]
function str.endswith(frame)
local args = str._getParameters(frame.args, {'source', 'pattern'})
local source = args.source or ''
local pattern = args.pattern or ''
if pattern == '' then
-- All strings end with the empty string.
return "yes"
end
if mw.ustring.sub(source, -mw.ustring.len(pattern), -1) == pattern then
return "yes"
else
return ""
end
end
--[[
join
Join all non empty arguments together; the first argument is the separator.
Usage:
{{#invoke:String|join|sep|one|two|three}}
]]
function str.join(frame)
local args = {}
local sep
for _, v in ipairs( frame.args ) do
if sep then
if v ~= '' then
table.insert(args, v)
end
else
sep = v
end
end
return table.concat( args, sep or '' )
end
--[[
Helper function that populates the argument list given that user may need to use a mix of
named and unnamed parameters. This is relevant because named parameters are not
identical to unnamed parameters due to string trimming, and when dealing with strings
we sometimes want to either preserve or remove that whitespace depending on the application.
]]
function str._getParameters( frame_args, arg_list )
local new_args = {}
local index = 1
local value
for _, arg in ipairs( arg_list ) do
value = frame_args[arg]
if value == nil then
value = frame_args[index]
index = index + 1
end
new_args[arg] = value
end
return new_args
end
--[[
Helper function to handle error messages.
]]
function str._error( error_str )
local frame = mw.getCurrentFrame()
local error_category = frame.args.error_category or 'Errors reported by Module String'
local ignore_errors = frame.args.ignore_errors or false
local no_category = frame.args.no_category or false
if str._getBoolean(ignore_errors) then
return ''
end
local error_str = '<strong class="error">String Module Error: ' .. error_str .. '</strong>'
if error_category ~= '' and not str._getBoolean( no_category ) then
error_str = '[[Category:' .. error_category .. ']]' .. error_str
end
return error_str
end
--[[
Helper Function to interpret boolean strings
]]
function str._getBoolean( boolean_str )
local boolean_value
if type( boolean_str ) == 'string' then
boolean_str = boolean_str:lower()
if boolean_str == 'false' or boolean_str == 'no' or boolean_str == '0'
or boolean_str == '' then
boolean_value = false
else
boolean_value = true
end
elseif type( boolean_str ) == 'boolean' then
boolean_value = boolean_str
else
error( 'No boolean value found' )
end
return boolean_value
end
--[[
Helper function that escapes all pattern characters so that they will be treated
as plain text.
]]
function str._escapePattern( pattern_str )
return mw.ustring.gsub( pattern_str, "([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" )
end
return str
6df794dd52434e0f6a372c9918f5a9dedd15f579
Template:Yesno
10
28
51
2020-08-28T03:15:17Z
Template:Infobox>Xaosflux
0
add additional paramerters, "t", "f" - requested on talk - worked in sandbox /testcases
wikitext
text/x-wiki
{{<includeonly>safesubst:</includeonly>#switch: {{<includeonly>safesubst:</includeonly>lc: {{{1|¬}}} }}
|no
|n
|f
|false
|off
|0 = {{{no|<!-- null -->}}}
| = {{{blank|{{{no|<!-- null -->}}}}}}
|¬ = {{{¬|}}}
|yes
|y
|t
|true
|on
|1 = {{{yes|yes}}}
|#default = {{{def|{{{yes|yes}}}}}}
}}<noinclude>
{{Documentation}}
</noinclude>
629c2937bc5cf7cfe13cd2a598582af832782399
Module:Effective protection level
828
46
87
2020-09-29T03:38:47Z
Template:Infobox>Jackmcbarn
0
bring in changes from sandbox
Scribunto
text/plain
local p = {}
-- Returns the permission required to perform a given action on a given title.
-- If no title is specified, the title of the page being displayed is used.
function p._main(action, pagename)
local title
if type(pagename) == 'table' and pagename.prefixedText then
title = pagename
elseif pagename then
title = mw.title.new(pagename)
else
title = mw.title.getCurrentTitle()
end
pagename = title.prefixedText
if action == 'autoreview' then
local level = mw.ext.FlaggedRevs.getStabilitySettings(title)
level = level and level.autoreview
if level == 'review' then
return 'reviewer'
elseif level ~= '' then
return level
else
return nil -- not '*'. a page not being PC-protected is distinct from it being PC-protected with anyone able to review. also not '', as that would mean PC-protected but nobody can review
end
elseif action ~= 'edit' and action ~= 'move' and action ~= 'create' and action ~= 'upload' and action ~= 'undelete' then
error( 'First parameter must be one of edit, move, create, upload, undelete, autoreview', 2 )
end
if title.namespace == 8 then -- MediaWiki namespace
if title.text:sub(-3) == '.js' or title.text:sub(-4) == '.css' or title.contentModel == 'javascript' or title.contentModel == 'css' then -- site JS or CSS page
return 'interfaceadmin'
else -- any non-JS/CSS MediaWiki page
return 'sysop'
end
elseif title.namespace == 2 and title.isSubpage then
if title.contentModel == 'javascript' or title.contentModel == 'css' then -- user JS or CSS page
return 'interfaceadmin'
elseif title.contentModel == 'json' then -- user JSON page
return 'sysop'
end
end
if action == 'undelete' then
return 'sysop'
end
local level = title.protectionLevels[action] and title.protectionLevels[action][1]
if level == 'sysop' or level == 'editprotected' then
return 'sysop'
elseif title.cascadingProtection.restrictions[action] and title.cascadingProtection.restrictions[action][1] then -- used by a cascading-protected page
return 'sysop'
elseif level == 'templateeditor' then
return 'templateeditor'
elseif action == 'move' then
local blacklistentry = mw.ext.TitleBlacklist.test('edit', pagename) -- Testing action edit is correct, since this is for the source page. The target page name gets tested with action move.
if blacklistentry and not blacklistentry.params.autoconfirmed then
return 'templateeditor'
elseif title.namespace == 6 then
return 'filemover'
elseif level == 'extendedconfirmed' then
return 'extendedconfirmed'
else
return 'autoconfirmed'
end
end
local blacklistentry = mw.ext.TitleBlacklist.test(action, pagename)
if blacklistentry then
if not blacklistentry.params.autoconfirmed then
return 'templateeditor'
elseif level == 'extendedconfirmed' then
return 'extendedconfirmed'
else
return 'autoconfirmed'
end
elseif level == 'editsemiprotected' then -- create-semiprotected pages return this for some reason
return 'autoconfirmed'
elseif level then
return level
elseif action == 'upload' then
return 'autoconfirmed'
elseif action == 'create' and title.namespace % 2 == 0 and title.namespace ~= 118 then -- You need to be registered, but not autoconfirmed, to create non-talk pages other than drafts
return 'user'
else
return '*'
end
end
setmetatable(p, { __index = function(t, k)
return function(frame)
return t._main(k, frame.args[1])
end
end })
return p
70256a489edf6be9808031b14a7e3ef3e025da97
Template:Tlx
10
37
69
2020-11-20T18:53:35Z
Template:Infobox>Primefac
0
Primefac moved page [[Template:Tlx]] to [[Template:Template link expanded]] over redirect: expand name, make it more obvious
wikitext
text/x-wiki
#REDIRECT [[Template:Template link expanded]]
{{Redirect category shell|
{{R from move}}
}}
1fec988ceb46cb324af228aac45d7cd25fcc9008
Template:Template link expanded
10
38
71
2020-11-21T12:04:41Z
Template:Infobox>Primefac
0
update
wikitext
text/x-wiki
{{#Invoke:Template link general|main|code=on}}<noinclude>
{{Documentation|1=Template:Tlg/doc
|content = {{tlg/doc|tlx}}
}}
<!-- Add categories to the /doc subpage, not here! -->
</noinclude>
6c99696fee02f1da368ed20d2504e19bc15b1c13
Template:Tl
10
24
43
2021-02-12T22:03:00Z
Template:Infobox>Anthony Appleyard
0
Anthony Appleyard moved page [[Template:Tl]] to [[Template:Template link]]: [[Special:Permalink/1006428669|Requested]] by Buidhe at [[WP:RM/TR]]: RM closed as move
wikitext
text/x-wiki
#REDIRECT [[Template:Template link]]
{{Redirect category shell|
{{R from move}}
}}
d6593bb3b4a866249f55d0f34b047a71fe1f1529
Template:Template link
10
25
45
2021-03-25T19:03:22Z
Template:Infobox>Izno
0
[[Wikipedia:Templates for discussion/Log/2021 March 18#Template:Tlu]] closed as keep ([[WP:XFDC#4.0.11|XFDcloser]])
wikitext
text/x-wiki
{{[[Template:{{{1}}}|{{{1}}}]]}}<noinclude>{{documentation}}
<!-- Categories go on the /doc subpage and interwikis go on Wikidata. -->
</noinclude>
eabbec62efe3044a98ebb3ce9e7d4d43c222351d
Template:Main other
10
29
53
2021-12-10T16:08:06Z
Template:Infobox>Xaosflux
0
<!-- Add categories to the /doc subpage; interwikis go to Wikidata, thank you! -->
wikitext
text/x-wiki
{{#switch:
<!--If no or empty "demospace" parameter then detect namespace-->
{{#if:{{{demospace|}}}
| {{lc: {{{demospace}}} }} <!--Use lower case "demospace"-->
| {{#ifeq:{{NAMESPACE}}|{{ns:0}}
| main
| other
}}
}}
| main = {{{1|}}}
| other
| #default = {{{2|}}}
}}<noinclude>
{{documentation}}
<!-- Add categories to the /doc subpage; interwikis go to Wikidata, thank you! -->
</noinclude>
86ad907ffeea3cc545159e00cd1f2d6433946450
Module:Infobox/styles.css
828
34
63
2022-01-18T15:18:00Z
Template:Infobox>Jdlrobson
0
Fix [[phab:T281642]], a pet peeve of mine. This copies across styles from [[MediaWiki:Minerva.css]]
text
text/plain
/* {{pp|small=y}} */
/*
* This TemplateStyles sheet deliberately does NOT include the full set of
* infobox styles. We are still working to migrate all of the manual
* infoboxes. See [[MediaWiki talk:Common.css/to do#Infobox]]
* DO NOT ADD THEM HERE
*/
/*
* not strictly certain these styles are necessary since the modules now
* exclusively output infobox-subbox or infobox, not both
* just replicating the module faithfully
*/
.infobox-subbox {
padding: 0;
border: none;
margin: -3px;
width: auto;
min-width: 100%;
font-size: 100%;
clear: none;
float: none;
background-color: transparent;
}
.infobox-3cols-child {
margin: auto;
}
.infobox .navbar {
font-size: 100%;
}
/* T281642 */
body.skin-minerva .infobox-header,
body.skin-minerva .infobox-subheader,
body.skin-minerva .infobox-above,
body.skin-minerva .infobox-title,
body.skin-minerva .infobox-image,
body.skin-minerva .infobox-full-data,
body.skin-minerva .infobox-below {
text-align: center;
}
e8de6d96f4fde53afc4a6b0fed534405ab59b0a7
Module:TableTools
828
36
67
2022-01-31T13:08:18Z
Template:Infobox>MSGJ
0
updates/fixes requested by [[User:Uzume]]
Scribunto
text/plain
------------------------------------------------------------------------------------
-- TableTools --
-- --
-- This module includes a number of functions for dealing with Lua tables. --
-- It is a meta-module, meant to be called from other Lua modules, and should not --
-- be called directly from #invoke. --
------------------------------------------------------------------------------------
local libraryUtil = require('libraryUtil')
local p = {}
-- Define often-used variables and functions.
local floor = math.floor
local infinity = math.huge
local checkType = libraryUtil.checkType
local checkTypeMulti = libraryUtil.checkTypeMulti
------------------------------------------------------------------------------------
-- isPositiveInteger
--
-- This function returns true if the given value is a positive integer, and false
-- if not. Although it doesn't operate on tables, it is included here as it is
-- useful for determining whether a given table key is in the array part or the
-- hash part of a table.
------------------------------------------------------------------------------------
function p.isPositiveInteger(v)
return type(v) == 'number' and v >= 1 and floor(v) == v and v < infinity
end
------------------------------------------------------------------------------------
-- isNan
--
-- This function returns true if the given number is a NaN value, and false if
-- not. Although it doesn't operate on tables, it is included here as it is useful
-- for determining whether a value can be a valid table key. Lua will generate an
-- error if a NaN is used as a table key.
------------------------------------------------------------------------------------
function p.isNan(v)
return type(v) == 'number' and v ~= v
end
------------------------------------------------------------------------------------
-- shallowClone
--
-- This returns a clone of a table. The value returned is a new table, but all
-- subtables and functions are shared. Metamethods are respected, but the returned
-- table will have no metatable of its own.
------------------------------------------------------------------------------------
function p.shallowClone(t)
checkType('shallowClone', 1, t, 'table')
local ret = {}
for k, v in pairs(t) do
ret[k] = v
end
return ret
end
------------------------------------------------------------------------------------
-- removeDuplicates
--
-- This removes duplicate values from an array. Non-positive-integer keys are
-- ignored. The earliest value is kept, and all subsequent duplicate values are
-- removed, but otherwise the array order is unchanged.
------------------------------------------------------------------------------------
function p.removeDuplicates(arr)
checkType('removeDuplicates', 1, arr, 'table')
local isNan = p.isNan
local ret, exists = {}, {}
for _, v in ipairs(arr) do
if isNan(v) then
-- NaNs can't be table keys, and they are also unique, so we don't need to check existence.
ret[#ret + 1] = v
else
if not exists[v] then
ret[#ret + 1] = v
exists[v] = true
end
end
end
return ret
end
------------------------------------------------------------------------------------
-- numKeys
--
-- This takes a table and returns an array containing the numbers of any numerical
-- keys that have non-nil values, sorted in numerical order.
------------------------------------------------------------------------------------
function p.numKeys(t)
checkType('numKeys', 1, t, 'table')
local isPositiveInteger = p.isPositiveInteger
local nums = {}
for k in pairs(t) do
if isPositiveInteger(k) then
nums[#nums + 1] = k
end
end
table.sort(nums)
return nums
end
------------------------------------------------------------------------------------
-- affixNums
--
-- This takes a table and returns an array containing the numbers of keys with the
-- specified prefix and suffix. For example, for the table
-- {a1 = 'foo', a3 = 'bar', a6 = 'baz'} and the prefix "a", affixNums will return
-- {1, 3, 6}.
------------------------------------------------------------------------------------
function p.affixNums(t, prefix, suffix)
checkType('affixNums', 1, t, 'table')
checkType('affixNums', 2, prefix, 'string', true)
checkType('affixNums', 3, suffix, 'string', true)
local function cleanPattern(s)
-- Cleans a pattern so that the magic characters ()%.[]*+-?^$ are interpreted literally.
return s:gsub('([%(%)%%%.%[%]%*%+%-%?%^%$])', '%%%1')
end
prefix = prefix or ''
suffix = suffix or ''
prefix = cleanPattern(prefix)
suffix = cleanPattern(suffix)
local pattern = '^' .. prefix .. '([1-9]%d*)' .. suffix .. '$'
local nums = {}
for k in pairs(t) do
if type(k) == 'string' then
local num = mw.ustring.match(k, pattern)
if num then
nums[#nums + 1] = tonumber(num)
end
end
end
table.sort(nums)
return nums
end
------------------------------------------------------------------------------------
-- numData
--
-- Given a table with keys like {"foo1", "bar1", "foo2", "baz2"}, returns a table
-- of subtables in the format
-- {[1] = {foo = 'text', bar = 'text'}, [2] = {foo = 'text', baz = 'text'}}.
-- Keys that don't end with an integer are stored in a subtable named "other". The
-- compress option compresses the table so that it can be iterated over with
-- ipairs.
------------------------------------------------------------------------------------
function p.numData(t, compress)
checkType('numData', 1, t, 'table')
checkType('numData', 2, compress, 'boolean', true)
local ret = {}
for k, v in pairs(t) do
local prefix, num = mw.ustring.match(tostring(k), '^([^0-9]*)([1-9][0-9]*)$')
if num then
num = tonumber(num)
local subtable = ret[num] or {}
if prefix == '' then
-- Positional parameters match the blank string; put them at the start of the subtable instead.
prefix = 1
end
subtable[prefix] = v
ret[num] = subtable
else
local subtable = ret.other or {}
subtable[k] = v
ret.other = subtable
end
end
if compress then
local other = ret.other
ret = p.compressSparseArray(ret)
ret.other = other
end
return ret
end
------------------------------------------------------------------------------------
-- compressSparseArray
--
-- This takes an array with one or more nil values, and removes the nil values
-- while preserving the order, so that the array can be safely traversed with
-- ipairs.
------------------------------------------------------------------------------------
function p.compressSparseArray(t)
checkType('compressSparseArray', 1, t, 'table')
local ret = {}
local nums = p.numKeys(t)
for _, num in ipairs(nums) do
ret[#ret + 1] = t[num]
end
return ret
end
------------------------------------------------------------------------------------
-- sparseIpairs
--
-- This is an iterator for sparse arrays. It can be used like ipairs, but can
-- handle nil values.
------------------------------------------------------------------------------------
function p.sparseIpairs(t)
checkType('sparseIpairs', 1, t, 'table')
local nums = p.numKeys(t)
local i = 0
local lim = #nums
return function ()
i = i + 1
if i <= lim then
local key = nums[i]
return key, t[key]
else
return nil, nil
end
end
end
------------------------------------------------------------------------------------
-- size
--
-- This returns the size of a key/value pair table. It will also work on arrays,
-- but for arrays it is more efficient to use the # operator.
------------------------------------------------------------------------------------
function p.size(t)
checkType('size', 1, t, 'table')
local i = 0
for _ in pairs(t) do
i = i + 1
end
return i
end
local function defaultKeySort(item1, item2)
-- "number" < "string", so numbers will be sorted before strings.
local type1, type2 = type(item1), type(item2)
if type1 ~= type2 then
return type1 < type2
elseif type1 == 'table' or type1 == 'boolean' or type1 == 'function' then
return tostring(item1) < tostring(item2)
else
return item1 < item2
end
end
------------------------------------------------------------------------------------
-- keysToList
--
-- Returns an array of the keys in a table, sorted using either a default
-- comparison function or a custom keySort function.
------------------------------------------------------------------------------------
function p.keysToList(t, keySort, checked)
if not checked then
checkType('keysToList', 1, t, 'table')
checkTypeMulti('keysToList', 2, keySort, {'function', 'boolean', 'nil'})
end
local arr = {}
local index = 1
for k in pairs(t) do
arr[index] = k
index = index + 1
end
if keySort ~= false then
keySort = type(keySort) == 'function' and keySort or defaultKeySort
table.sort(arr, keySort)
end
return arr
end
------------------------------------------------------------------------------------
-- sortedPairs
--
-- Iterates through a table, with the keys sorted using the keysToList function.
-- If there are only numerical keys, sparseIpairs is probably more efficient.
------------------------------------------------------------------------------------
function p.sortedPairs(t, keySort)
checkType('sortedPairs', 1, t, 'table')
checkType('sortedPairs', 2, keySort, 'function', true)
local arr = p.keysToList(t, keySort, true)
local i = 0
return function ()
i = i + 1
local key = arr[i]
if key ~= nil then
return key, t[key]
else
return nil, nil
end
end
end
------------------------------------------------------------------------------------
-- isArray
--
-- Returns true if the given value is a table and all keys are consecutive
-- integers starting at 1.
------------------------------------------------------------------------------------
function p.isArray(v)
if type(v) ~= 'table' then
return false
end
local i = 0
for _ in pairs(v) do
i = i + 1
if v[i] == nil then
return false
end
end
return true
end
------------------------------------------------------------------------------------
-- isArrayLike
--
-- Returns true if the given value is iterable and all keys are consecutive
-- integers starting at 1.
------------------------------------------------------------------------------------
function p.isArrayLike(v)
if not pcall(pairs, v) then
return false
end
local i = 0
for _ in pairs(v) do
i = i + 1
if v[i] == nil then
return false
end
end
return true
end
------------------------------------------------------------------------------------
-- invert
--
-- Transposes the keys and values in an array. For example, {"a", "b", "c"} ->
-- {a = 1, b = 2, c = 3}. Duplicates are not supported (result values refer to
-- the index of the last duplicate) and NaN values are ignored.
------------------------------------------------------------------------------------
function p.invert(arr)
checkType("invert", 1, arr, "table")
local isNan = p.isNan
local map = {}
for i, v in ipairs(arr) do
if not isNan(v) then
map[v] = i
end
end
return map
end
------------------------------------------------------------------------------------
-- listToSet
--
-- Creates a set from the array part of the table. Indexing the set by any of the
-- values of the array returns true. For example, {"a", "b", "c"} ->
-- {a = true, b = true, c = true}. NaN values are ignored as Lua considers them
-- never equal to any value (including other NaNs or even themselves).
------------------------------------------------------------------------------------
function p.listToSet(arr)
checkType("listToSet", 1, arr, "table")
local isNan = p.isNan
local set = {}
for _, v in ipairs(arr) do
if not isNan(v) then
set[v] = true
end
end
return set
end
------------------------------------------------------------------------------------
-- deepCopy
--
-- Recursive deep copy function. Preserves identities of subtables.
------------------------------------------------------------------------------------
local function _deepCopy(orig, includeMetatable, already_seen)
-- Stores copies of tables indexed by the original table.
already_seen = already_seen or {}
local copy = already_seen[orig]
if copy ~= nil then
return copy
end
if type(orig) == 'table' then
copy = {}
for orig_key, orig_value in pairs(orig) do
copy[_deepCopy(orig_key, includeMetatable, already_seen)] = _deepCopy(orig_value, includeMetatable, already_seen)
end
already_seen[orig] = copy
if includeMetatable then
local mt = getmetatable(orig)
if mt ~= nil then
local mt_copy = _deepCopy(mt, includeMetatable, already_seen)
setmetatable(copy, mt_copy)
already_seen[mt] = mt_copy
end
end
else -- number, string, boolean, etc
copy = orig
end
return copy
end
function p.deepCopy(orig, noMetatable, already_seen)
checkType("deepCopy", 3, already_seen, "table", true)
return _deepCopy(orig, not noMetatable, already_seen)
end
------------------------------------------------------------------------------------
-- sparseConcat
--
-- Concatenates all values in the table that are indexed by a number, in order.
-- sparseConcat{a, nil, c, d} => "acd"
-- sparseConcat{nil, b, c, d} => "bcd"
------------------------------------------------------------------------------------
function p.sparseConcat(t, sep, i, j)
local arr = {}
local arr_i = 0
for _, v in p.sparseIpairs(t) do
arr_i = arr_i + 1
arr[arr_i] = v
end
return table.concat(arr, sep, i, j)
end
------------------------------------------------------------------------------------
-- length
--
-- Finds the length of an array, or of a quasi-array with keys such as "data1",
-- "data2", etc., using an exponential search algorithm. It is similar to the
-- operator #, but may return a different value when there are gaps in the array
-- portion of the table. Intended to be used on data loaded with mw.loadData. For
-- other tables, use #.
-- Note: #frame.args in frame object always be set to 0, regardless of the number
-- of unnamed template parameters, so use this function for frame.args.
------------------------------------------------------------------------------------
function p.length(t, prefix)
-- requiring module inline so that [[Module:Exponential search]] which is
-- only needed by this one function doesn't get millions of transclusions
local expSearch = require("Module:Exponential search")
checkType('length', 1, t, 'table')
checkType('length', 2, prefix, 'string', true)
return expSearch(function (i)
local key
if prefix then
key = prefix .. tostring(i)
else
key = i
end
return t[key] ~= nil
end) or 0
end
------------------------------------------------------------------------------------
-- inArray
--
-- Returns true if valueToFind is a member of the array, and false otherwise.
------------------------------------------------------------------------------------
function p.inArray(arr, valueToFind)
checkType("inArray", 1, arr, "table")
-- if valueToFind is nil, error?
for _, v in ipairs(arr) do
if v == valueToFind then
return true
end
end
return false
end
return p
085e7094ac84eb0132ee65822cf3f69cd8ba3d81
Module:Check for unknown parameters
828
32
59
2022-02-21T05:24:13Z
Template:Infobox>BusterD
0
Changed protection settings for "[[Module:Check for unknown parameters]]": [[WP:High-risk templates|Highly visible template]]; requested at [[WP:RfPP]] ([Edit=Require administrator access] (indefinite) [Move=Require administrator access] (indefinite))
Scribunto
text/plain
-- This module may be used to compare the arguments passed to the parent
-- with a list of arguments, returning a specified result if an argument is
-- not on the list
local p = {}
local function trim(s)
return s:match('^%s*(.-)%s*$')
end
local function isnotempty(s)
return s and s:match('%S')
end
local function clean(text)
-- Return text cleaned for display and truncated if too long.
-- Strip markers are replaced with dummy text representing the original wikitext.
local pos, truncated
local function truncate(text)
if truncated then
return ''
end
if mw.ustring.len(text) > 25 then
truncated = true
text = mw.ustring.sub(text, 1, 25) .. '...'
end
return mw.text.nowiki(text)
end
local parts = {}
for before, tag, remainder in text:gmatch('([^\127]*)\127[^\127]*%-(%l+)%-[^\127]*\127()') do
pos = remainder
table.insert(parts, truncate(before) .. '<' .. tag .. '>...</' .. tag .. '>')
end
table.insert(parts, truncate(text:sub(pos or 1)))
return table.concat(parts)
end
function p._check(args, pargs)
if type(args) ~= "table" or type(pargs) ~= "table" then
-- TODO: error handling
return
end
-- create the list of known args, regular expressions, and the return string
local knownargs = {}
local regexps = {}
for k, v in pairs(args) do
if type(k) == 'number' then
v = trim(v)
knownargs[v] = 1
elseif k:find('^regexp[1-9][0-9]*$') then
table.insert(regexps, '^' .. v .. '$')
end
end
-- loop over the parent args, and make sure they are on the list
local ignoreblank = isnotempty(args['ignoreblank'])
local showblankpos = isnotempty(args['showblankpositional'])
local values = {}
for k, v in pairs(pargs) do
if type(k) == 'string' and knownargs[k] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(k, regexp) then
knownflag = true
break
end
end
if not knownflag and ( not ignoreblank or isnotempty(v) ) then
table.insert(values, clean(k))
end
elseif type(k) == 'number' and knownargs[tostring(k)] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(tostring(k), regexp) then
knownflag = true
break
end
end
if not knownflag and ( showblankpos or isnotempty(v) ) then
table.insert(values, k .. ' = ' .. clean(v))
end
end
end
-- add results to the output tables
local res = {}
if #values > 0 then
local unknown_text = args['unknown'] or 'Found _VALUE_, '
if mw.getCurrentFrame():preprocess( "{{REVISIONID}}" ) == "" then
local preview_text = args['preview']
if isnotempty(preview_text) then
preview_text = require('Module:If preview')._warning({preview_text})
elseif preview == nil then
preview_text = unknown_text
end
unknown_text = preview_text
end
for _, v in pairs(values) do
-- Fix odd bug for | = which gets stripped to the empty string and
-- breaks category links
if v == '' then v = ' ' end
-- avoid error with v = 'example%2' ("invalid capture index")
local r = unknown_text:gsub('_VALUE_', {_VALUE_ = v})
table.insert(res, r)
end
end
return table.concat(res)
end
function p.check(frame)
local args = frame.args
local pargs = frame:getParent().args
return p._check(args, pargs)
end
return p
93db6d115d4328d2a5148bb42959105e367b663e
Module:Effective protection expiry
828
45
85
2022-02-23T10:59:29Z
Template:Infobox>Xaosflux
0
Changed protection settings for "[[Module:Effective protection expiry]]": used in the mediawiki interface / match [[Module:Effective protection level]] ([Edit=Require administrator access] (indefinite) [Move=Require administrator access] (indefinite))
Scribunto
text/plain
local p = {}
-- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known.
-- If no title is specified, the title of the page being displayed is used.
function p._main(action, pagename)
local title
if type(pagename) == 'table' and pagename.prefixedText then
title = pagename
elseif pagename then
title = mw.title.new(pagename)
else
title = mw.title.getCurrentTitle()
end
pagename = title.prefixedText
if action == 'autoreview' then
local stabilitySettings = mw.ext.FlaggedRevs.getStabilitySettings(title)
return stabilitySettings and stabilitySettings.expiry or 'unknown'
elseif action ~= 'edit' and action ~= 'move' and action ~= 'create' and action ~= 'upload' then
error( 'First parameter must be one of edit, move, create, upload, autoreview', 2 )
end
local rawExpiry = mw.getCurrentFrame():callParserFunction('PROTECTIONEXPIRY', action, pagename)
if rawExpiry == 'infinity' then
return 'infinity'
elseif rawExpiry == '' then
return 'unknown'
else
local year, month, day, hour, minute, second = rawExpiry:match(
'^(%d%d%d%d)(%d%d)(%d%d)(%d%d)(%d%d)(%d%d)$'
)
if year then
return string.format(
'%s-%s-%sT%s:%s:%s',
year, month, day, hour, minute, second
)
else
error('internal error in Module:Effective protection expiry; malformed expiry timestamp')
end
end
end
setmetatable(p, { __index = function(t, k)
return function(frame)
return t._main(k, frame.args[1])
end
end })
return p
9a8c58dc2667232ed08a9b206a5d89ca8150312b
Module:Template link general
828
39
73
2022-03-08T08:30:51Z
Template:Infobox>Primefac
0
update from sandbox - fixes to _show_result and adding _expand
Scribunto
text/plain
-- This implements Template:Tlg
local getArgs = require('Module:Arguments').getArgs
local p = {}
-- Is a string non-empty?
local function _ne(s)
return s ~= nil and s ~= ""
end
local nw = mw.text.nowiki
local function addTemplate(s)
local i, _ = s:find(':', 1, true)
if i == nil then
return 'Template:' .. s
end
local ns = s:sub(1, i - 1)
if ns == '' or mw.site.namespaces[ns] then
return s
else
return 'Template:' .. s
end
end
local function trimTemplate(s)
local needle = 'template:'
if s:sub(1, needle:len()):lower() == needle then
return s:sub(needle:len() + 1)
else
return s
end
end
local function linkTitle(args)
if _ne(args.nolink) then
return args['1']
end
local titleObj
local titlePart = '[['
if args['1'] then
-- This handles :Page and other NS
titleObj = mw.title.new(args['1'], 'Template')
else
titleObj = mw.title.getCurrentTitle()
end
titlePart = titlePart .. (titleObj ~= nil and titleObj.fullText or
addTemplate(args['1']))
local textPart = args.alttext
if not _ne(textPart) then
if titleObj ~= nil then
textPart = titleObj:inNamespace("Template") and args['1'] or titleObj.fullText
else
-- redlink
textPart = args['1']
end
end
if _ne(args.subst) then
-- HACK: the ns thing above is probably broken
textPart = 'subst:' .. textPart
end
if _ne(args.brace) then
textPart = nw('{{') .. textPart .. nw('}}')
elseif _ne(args.braceinside) then
textPart = nw('{') .. textPart .. nw('}')
end
titlePart = titlePart .. '|' .. textPart .. ']]'
if _ne(args.braceinside) then
titlePart = nw('{') .. titlePart .. nw('}')
end
return titlePart
end
function p.main(frame)
local args = getArgs(frame, {
trim = true,
removeBlanks = false
})
return p._main(args)
end
function p._main(args)
local bold = _ne(args.bold) or _ne(args.boldlink) or _ne(args.boldname)
local italic = _ne(args.italic) or _ne(args.italics)
local dontBrace = _ne(args.brace) or _ne(args.braceinside)
local code = _ne(args.code) or _ne(args.tt)
local show_result = _ne(args._show_result)
local expand = _ne(args._expand)
-- Build the link part
local titlePart = linkTitle(args)
if bold then titlePart = "'''" .. titlePart .. "'''" end
if _ne(args.nowrapname) then titlePart = '<span class="nowrap">' .. titlePart .. '</span>' end
-- Build the arguments
local textPart = ""
local textPartBuffer = "|"
local codeArguments = {}
local codeArgumentsString = ""
local i = 2
local j = 1
while args[i] do
local val = args[i]
if val ~= "" then
if _ne(args.nowiki) then
-- Unstrip nowiki tags first because calling nw on something that already contains nowiki tags will
-- mangle the nowiki strip marker and result in literal UNIQ...QINU showing up
val = nw(mw.text.unstripNoWiki(val))
end
local k, v = string.match(val, "(.*)=(.*)")
if not k then
codeArguments[j] = val
j = j + 1
else
codeArguments[k] = v
end
codeArgumentsString = codeArgumentsString .. textPartBuffer .. val
if italic then
val = '<span style="font-style:italic;">' .. val .. '</span>'
end
textPart = textPart .. textPartBuffer .. val
end
i = i + 1
end
-- final wrap
local ret = titlePart .. textPart
if not dontBrace then ret = nw('{{') .. ret .. nw('}}') end
if _ne(args.a) then ret = nw('*') .. ' ' .. ret end
if _ne(args.kbd) then ret = '<kbd>' .. ret .. '</kbd>' end
if code then
ret = '<code>' .. ret .. '</code>'
elseif _ne(args.plaincode) then
ret = '<code style="border:none;background:transparent;">' .. ret .. '</code>'
end
if _ne(args.nowrap) then ret = '<span class="nowrap">' .. ret .. '</span>' end
--[[ Wrap as html??
local span = mw.html.create('span')
span:wikitext(ret)
--]]
if _ne(args.debug) then ret = ret .. '\n<pre>' .. mw.text.encode(mw.dumpObject(args)) .. '</pre>' end
if show_result then
local result = mw.getCurrentFrame():expandTemplate{title = addTemplate(args[1]), args = codeArguments}
ret = ret .. " → " .. result
end
if expand then
local query = mw.text.encode('{{' .. addTemplate(args[1]) .. string.gsub(codeArgumentsString, textPartBuffer, "|") .. '}}')
local url = mw.uri.fullUrl('special:ExpandTemplates', 'wpInput=' .. query)
mw.log()
ret = ret .. " [" .. tostring(url) .. "]"
end
return ret
end
return p
c7307fa3959d308a2dd7fd2f5009c1ce6db3d122
Template:Clear
10
41
77
2022-06-13T15:31:11Z
Template:Infobox>Xaosflux
0
Changed protection settings for "[[Template:Clear]]": [[WP:High-risk templates|Highly visible template]]: 3MM+ uses ([Edit=Require administrator access] (indefinite) [Move=Require administrator access] (indefinite))
wikitext
text/x-wiki
<div style="clear:{{{1|both}}};"></div><noinclude>
{{documentation}}
</noinclude>
38bab3e3d7fbd3d6800d46556e60bc6bac494d72
Module:Message box/configuration
828
27
49
2022-07-11T18:19:26Z
Template:Infobox>Izno
0
add templatestyles, remove a variable or two as a result
Scribunto
text/plain
--------------------------------------------------------------------------------
-- Message box configuration --
-- --
-- This module contains configuration data for [[Module:Message box]]. --
--------------------------------------------------------------------------------
return {
ambox = {
types = {
speedy = {
class = 'ambox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'ambox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'ambox-content',
image = 'Ambox important.svg'
},
style = {
class = 'ambox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'ambox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'ambox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'ambox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
allowBlankParams = {'talk', 'sect', 'date', 'issue', 'fix', 'subst', 'hidden'},
allowSmall = true,
smallParam = 'left',
smallClass = 'mbox-small-left',
substCheck = true,
classes = {'metadata', 'ambox'},
imageEmptyCell = true,
imageCheckBlank = true,
imageSmallSize = '20x20px',
imageCellDiv = true,
useCollapsibleTextFields = true,
imageRightNone = true,
sectionDefault = 'article',
allowMainspaceCategories = true,
templateCategory = 'Article message templates',
templateCategoryRequireName = true,
templateErrorCategory = 'Article message templates with missing parameters',
templateErrorParamsToCheck = {'issue', 'fix', 'subst'},
removalNotice = '<small>[[Help:Maintenance template removal|Learn how and when to remove this template message]]</small>',
templatestyles = 'Module:Message box/ambox.css'
},
cmbox = {
types = {
speedy = {
class = 'cmbox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'cmbox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'cmbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'cmbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'cmbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'cmbox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'cmbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'cmbox'},
imageEmptyCell = true,
templatestyles = 'Module:Message box/cmbox.css'
},
fmbox = {
types = {
warning = {
class = 'fmbox-warning',
image = 'Ambox warning pn.svg'
},
editnotice = {
class = 'fmbox-editnotice',
image = 'Information icon4.svg'
},
system = {
class = 'fmbox-system',
image = 'Information icon4.svg'
}
},
default = 'system',
showInvalidTypeError = true,
classes = {'fmbox'},
imageEmptyCell = false,
imageRightNone = false,
templatestyles = 'Module:Message box/fmbox.css'
},
imbox = {
types = {
speedy = {
class = 'imbox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'imbox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'imbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'imbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'imbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'imbox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
license = {
class = 'imbox-license licensetpl',
image = 'Imbox license.png' -- @todo We need an SVG version of this
},
featured = {
class = 'imbox-featured',
image = 'Cscr-featured.svg'
},
notice = {
class = 'imbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'imbox'},
imageEmptyCell = true,
below = true,
templateCategory = 'File message boxes',
templatestyles = 'Module:Message box/imbox.css'
},
ombox = {
types = {
speedy = {
class = 'ombox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'ombox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'ombox-content',
image = 'Ambox important.svg'
},
style = {
class = 'ombox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'ombox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'ombox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'ombox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'ombox'},
allowSmall = true,
imageEmptyCell = true,
imageRightNone = true,
templatestyles = 'Module:Message box/ombox.css'
},
tmbox = {
types = {
speedy = {
class = 'tmbox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'tmbox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'tmbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'tmbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'tmbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'tmbox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'tmbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'tmbox'},
allowSmall = true,
imageRightNone = true,
imageEmptyCell = true,
templateCategory = 'Talk message boxes',
templatestyles = 'Module:Message box/tmbox.css'
}
}
b6f0151037e6867b577c8cca32ff297e48697a10
Module:Message box
828
26
47
2022-10-23T04:26:44Z
Template:Infobox>Legoktm
0
Replace [[Module:No globals]] with require( "strict" )
Scribunto
text/plain
require('strict')
local getArgs
local yesno = require('Module:Yesno')
local lang = mw.language.getContentLanguage()
local CONFIG_MODULE = 'Module:Message box/configuration'
local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'}
--------------------------------------------------------------------------------
-- Helper functions
--------------------------------------------------------------------------------
local function getTitleObject(...)
-- Get the title object, passing the function through pcall
-- in case we are over the expensive function count limit.
local success, title = pcall(mw.title.new, ...)
if success then
return title
end
end
local function union(t1, t2)
-- Returns the union of two arrays.
local vals = {}
for i, v in ipairs(t1) do
vals[v] = true
end
for i, v in ipairs(t2) do
vals[v] = true
end
local ret = {}
for k in pairs(vals) do
table.insert(ret, k)
end
table.sort(ret)
return ret
end
local function getArgNums(args, prefix)
local nums = {}
for k, v in pairs(args) do
local num = mw.ustring.match(tostring(k), '^' .. prefix .. '([1-9]%d*)$')
if num then
table.insert(nums, tonumber(num))
end
end
table.sort(nums)
return nums
end
--------------------------------------------------------------------------------
-- Box class definition
--------------------------------------------------------------------------------
local MessageBox = {}
MessageBox.__index = MessageBox
function MessageBox.new(boxType, args, cfg)
args = args or {}
local obj = {}
-- Set the title object and the namespace.
obj.title = getTitleObject(args.page) or mw.title.getCurrentTitle()
-- Set the config for our box type.
obj.cfg = cfg[boxType]
if not obj.cfg then
local ns = obj.title.namespace
-- boxType is "mbox" or invalid input
if args.demospace and args.demospace ~= '' then
-- implement demospace parameter of mbox
local demospace = string.lower(args.demospace)
if DEMOSPACES[demospace] then
-- use template from DEMOSPACES
obj.cfg = cfg[DEMOSPACES[demospace]]
elseif string.find( demospace, 'talk' ) then
-- demo as a talk page
obj.cfg = cfg.tmbox
else
-- default to ombox
obj.cfg = cfg.ombox
end
elseif ns == 0 then
obj.cfg = cfg.ambox -- main namespace
elseif ns == 6 then
obj.cfg = cfg.imbox -- file namespace
elseif ns == 14 then
obj.cfg = cfg.cmbox -- category namespace
else
local nsTable = mw.site.namespaces[ns]
if nsTable and nsTable.isTalk then
obj.cfg = cfg.tmbox -- any talk namespace
else
obj.cfg = cfg.ombox -- other namespaces or invalid input
end
end
end
-- Set the arguments, and remove all blank arguments except for the ones
-- listed in cfg.allowBlankParams.
do
local newArgs = {}
for k, v in pairs(args) do
if v ~= '' then
newArgs[k] = v
end
end
for i, param in ipairs(obj.cfg.allowBlankParams or {}) do
newArgs[param] = args[param]
end
obj.args = newArgs
end
-- Define internal data structure.
obj.categories = {}
obj.classes = {}
-- For lazy loading of [[Module:Category handler]].
obj.hasCategories = false
return setmetatable(obj, MessageBox)
end
function MessageBox:addCat(ns, cat, sort)
if not cat then
return nil
end
if sort then
cat = string.format('[[Category:%s|%s]]', cat, sort)
else
cat = string.format('[[Category:%s]]', cat)
end
self.hasCategories = true
self.categories[ns] = self.categories[ns] or {}
table.insert(self.categories[ns], cat)
end
function MessageBox:addClass(class)
if not class then
return nil
end
table.insert(self.classes, class)
end
function MessageBox:setParameters()
local args = self.args
local cfg = self.cfg
-- Get type data.
self.type = args.type
local typeData = cfg.types[self.type]
self.invalidTypeError = cfg.showInvalidTypeError
and self.type
and not typeData
typeData = typeData or cfg.types[cfg.default]
self.typeClass = typeData.class
self.typeImage = typeData.image
-- Find if the box has been wrongly substituted.
self.isSubstituted = cfg.substCheck and args.subst == 'SUBST'
-- Find whether we are using a small message box.
self.isSmall = cfg.allowSmall and (
cfg.smallParam and args.small == cfg.smallParam
or not cfg.smallParam and yesno(args.small)
)
-- Add attributes, classes and styles.
self.id = args.id
self.name = args.name
if self.name then
self:addClass('box-' .. string.gsub(self.name,' ','_'))
end
if yesno(args.plainlinks) ~= false then
self:addClass('plainlinks')
end
for _, class in ipairs(cfg.classes or {}) do
self:addClass(class)
end
if self.isSmall then
self:addClass(cfg.smallClass or 'mbox-small')
end
self:addClass(self.typeClass)
self:addClass(args.class)
self.style = args.style
self.attrs = args.attrs
-- Set text style.
self.textstyle = args.textstyle
-- Find if we are on the template page or not. This functionality is only
-- used if useCollapsibleTextFields is set, or if both cfg.templateCategory
-- and cfg.templateCategoryRequireName are set.
self.useCollapsibleTextFields = cfg.useCollapsibleTextFields
if self.useCollapsibleTextFields
or cfg.templateCategory
and cfg.templateCategoryRequireName
then
if self.name then
local templateName = mw.ustring.match(
self.name,
'^[tT][eE][mM][pP][lL][aA][tT][eE][%s_]*:[%s_]*(.*)$'
) or self.name
templateName = 'Template:' .. templateName
self.templateTitle = getTitleObject(templateName)
end
self.isTemplatePage = self.templateTitle
and mw.title.equals(self.title, self.templateTitle)
end
-- Process data for collapsible text fields. At the moment these are only
-- used in {{ambox}}.
if self.useCollapsibleTextFields then
-- Get the self.issue value.
if self.isSmall and args.smalltext then
self.issue = args.smalltext
else
local sect
if args.sect == '' then
sect = 'This ' .. (cfg.sectionDefault or 'page')
elseif type(args.sect) == 'string' then
sect = 'This ' .. args.sect
end
local issue = args.issue
issue = type(issue) == 'string' and issue ~= '' and issue or nil
local text = args.text
text = type(text) == 'string' and text or nil
local issues = {}
table.insert(issues, sect)
table.insert(issues, issue)
table.insert(issues, text)
self.issue = table.concat(issues, ' ')
end
-- Get the self.talk value.
local talk = args.talk
-- Show talk links on the template page or template subpages if the talk
-- parameter is blank.
if talk == ''
and self.templateTitle
and (
mw.title.equals(self.templateTitle, self.title)
or self.title:isSubpageOf(self.templateTitle)
)
then
talk = '#'
elseif talk == '' then
talk = nil
end
if talk then
-- If the talk value is a talk page, make a link to that page. Else
-- assume that it's a section heading, and make a link to the talk
-- page of the current page with that section heading.
local talkTitle = getTitleObject(talk)
local talkArgIsTalkPage = true
if not talkTitle or not talkTitle.isTalkPage then
talkArgIsTalkPage = false
talkTitle = getTitleObject(
self.title.text,
mw.site.namespaces[self.title.namespace].talk.id
)
end
if talkTitle and talkTitle.exists then
local talkText
if self.isSmall then
local talkLink = talkArgIsTalkPage and talk or (talkTitle.prefixedText .. '#' .. talk)
talkText = string.format('([[%s|talk]])', talkLink)
else
talkText = 'Relevant discussion may be found on'
if talkArgIsTalkPage then
talkText = string.format(
'%s [[%s|%s]].',
talkText,
talk,
talkTitle.prefixedText
)
else
talkText = string.format(
'%s the [[%s#%s|talk page]].',
talkText,
talkTitle.prefixedText,
talk
)
end
end
self.talk = talkText
end
end
-- Get other values.
self.fix = args.fix ~= '' and args.fix or nil
local date
if args.date and args.date ~= '' then
date = args.date
elseif args.date == '' and self.isTemplatePage then
date = lang:formatDate('F Y')
end
if date then
self.date = string.format(" <span class='date-container'><i>(<span class='date'>%s</span>)</i></span>", date)
end
self.info = args.info
if yesno(args.removalnotice) then
self.removalNotice = cfg.removalNotice
end
end
-- Set the non-collapsible text field. At the moment this is used by all box
-- types other than ambox, and also by ambox when small=yes.
if self.isSmall then
self.text = args.smalltext or args.text
else
self.text = args.text
end
-- Set the below row.
self.below = cfg.below and args.below
-- General image settings.
self.imageCellDiv = not self.isSmall and cfg.imageCellDiv
self.imageEmptyCell = cfg.imageEmptyCell
-- Left image settings.
local imageLeft = self.isSmall and args.smallimage or args.image
if cfg.imageCheckBlank and imageLeft ~= 'blank' and imageLeft ~= 'none'
or not cfg.imageCheckBlank and imageLeft ~= 'none'
then
self.imageLeft = imageLeft
if not imageLeft then
local imageSize = self.isSmall
and (cfg.imageSmallSize or '30x30px')
or '40x40px'
self.imageLeft = string.format('[[File:%s|%s|link=|alt=]]', self.typeImage
or 'Imbox notice.png', imageSize)
end
end
-- Right image settings.
local imageRight = self.isSmall and args.smallimageright or args.imageright
if not (cfg.imageRightNone and imageRight == 'none') then
self.imageRight = imageRight
end
-- set templatestyles
self.base_templatestyles = cfg.templatestyles
self.templatestyles = args.templatestyles
end
function MessageBox:setMainspaceCategories()
local args = self.args
local cfg = self.cfg
if not cfg.allowMainspaceCategories then
return nil
end
local nums = {}
for _, prefix in ipairs{'cat', 'category', 'all'} do
args[prefix .. '1'] = args[prefix]
nums = union(nums, getArgNums(args, prefix))
end
-- The following is roughly equivalent to the old {{Ambox/category}}.
local date = args.date
date = type(date) == 'string' and date
local preposition = 'from'
for _, num in ipairs(nums) do
local mainCat = args['cat' .. tostring(num)]
or args['category' .. tostring(num)]
local allCat = args['all' .. tostring(num)]
mainCat = type(mainCat) == 'string' and mainCat
allCat = type(allCat) == 'string' and allCat
if mainCat and date and date ~= '' then
local catTitle = string.format('%s %s %s', mainCat, preposition, date)
self:addCat(0, catTitle)
catTitle = getTitleObject('Category:' .. catTitle)
if not catTitle or not catTitle.exists then
self:addCat(0, 'Articles with invalid date parameter in template')
end
elseif mainCat and (not date or date == '') then
self:addCat(0, mainCat)
end
if allCat then
self:addCat(0, allCat)
end
end
end
function MessageBox:setTemplateCategories()
local args = self.args
local cfg = self.cfg
-- Add template categories.
if cfg.templateCategory then
if cfg.templateCategoryRequireName then
if self.isTemplatePage then
self:addCat(10, cfg.templateCategory)
end
elseif not self.title.isSubpage then
self:addCat(10, cfg.templateCategory)
end
end
-- Add template error categories.
if cfg.templateErrorCategory then
local templateErrorCategory = cfg.templateErrorCategory
local templateCat, templateSort
if not self.name and not self.title.isSubpage then
templateCat = templateErrorCategory
elseif self.isTemplatePage then
local paramsToCheck = cfg.templateErrorParamsToCheck or {}
local count = 0
for i, param in ipairs(paramsToCheck) do
if not args[param] then
count = count + 1
end
end
if count > 0 then
templateCat = templateErrorCategory
templateSort = tostring(count)
end
if self.categoryNums and #self.categoryNums > 0 then
templateCat = templateErrorCategory
templateSort = 'C'
end
end
self:addCat(10, templateCat, templateSort)
end
end
function MessageBox:setAllNamespaceCategories()
-- Set categories for all namespaces.
if self.invalidTypeError then
local allSort = (self.title.namespace == 0 and 'Main:' or '') .. self.title.prefixedText
self:addCat('all', 'Wikipedia message box parameter needs fixing', allSort)
end
if self.isSubstituted then
self:addCat('all', 'Pages with incorrectly substituted templates')
end
end
function MessageBox:setCategories()
if self.title.namespace == 0 then
self:setMainspaceCategories()
elseif self.title.namespace == 10 then
self:setTemplateCategories()
end
self:setAllNamespaceCategories()
end
function MessageBox:renderCategories()
if not self.hasCategories then
-- No categories added, no need to pass them to Category handler so,
-- if it was invoked, it would return the empty string.
-- So we shortcut and return the empty string.
return ""
end
-- Convert category tables to strings and pass them through
-- [[Module:Category handler]].
return require('Module:Category handler')._main{
main = table.concat(self.categories[0] or {}),
template = table.concat(self.categories[10] or {}),
all = table.concat(self.categories.all or {}),
nocat = self.args.nocat,
page = self.args.page
}
end
function MessageBox:export()
local root = mw.html.create()
-- Add the subst check error.
if self.isSubstituted and self.name then
root:tag('b')
:addClass('error')
:wikitext(string.format(
'Template <code>%s[[Template:%s|%s]]%s</code> has been incorrectly substituted.',
mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}')
))
end
local frame = mw.getCurrentFrame()
root:wikitext(frame:extensionTag{
name = 'templatestyles',
args = { src = self.base_templatestyles },
})
-- Add support for a single custom templatestyles sheet. Undocumented as
-- need should be limited and many templates using mbox are substed; we
-- don't want to spread templatestyles sheets around to arbitrary places
if self.templatestyles then
root:wikitext(frame:extensionTag{
name = 'templatestyles',
args = { src = self.templatestyles },
})
end
-- Create the box table.
local boxTable = root:tag('table')
boxTable:attr('id', self.id or nil)
for i, class in ipairs(self.classes or {}) do
boxTable:addClass(class or nil)
end
boxTable
:cssText(self.style or nil)
:attr('role', 'presentation')
if self.attrs then
boxTable:attr(self.attrs)
end
-- Add the left-hand image.
local row = boxTable:tag('tr')
if self.imageLeft then
local imageLeftCell = row:tag('td'):addClass('mbox-image')
if self.imageCellDiv then
-- If we are using a div, redefine imageLeftCell so that the image
-- is inside it. Divs use style="width: 52px;", which limits the
-- image width to 52px. If any images in a div are wider than that,
-- they may overlap with the text or cause other display problems.
imageLeftCell = imageLeftCell:tag('div'):addClass('mbox-image-div')
end
imageLeftCell:wikitext(self.imageLeft or nil)
elseif self.imageEmptyCell then
-- Some message boxes define an empty cell if no image is specified, and
-- some don't. The old template code in templates where empty cells are
-- specified gives the following hint: "No image. Cell with some width
-- or padding necessary for text cell to have 100% width."
row:tag('td')
:addClass('mbox-empty-cell')
end
-- Add the text.
local textCell = row:tag('td'):addClass('mbox-text')
if self.useCollapsibleTextFields then
-- The message box uses advanced text parameters that allow things to be
-- collapsible. At the moment, only ambox uses this.
textCell:cssText(self.textstyle or nil)
local textCellDiv = textCell:tag('div')
textCellDiv
:addClass('mbox-text-span')
:wikitext(self.issue or nil)
if (self.talk or self.fix) then
textCellDiv:tag('span')
:addClass('hide-when-compact')
:wikitext(self.talk and (' ' .. self.talk) or nil)
:wikitext(self.fix and (' ' .. self.fix) or nil)
end
textCellDiv:wikitext(self.date and (' ' .. self.date) or nil)
if self.info and not self.isSmall then
textCellDiv
:tag('span')
:addClass('hide-when-compact')
:wikitext(self.info and (' ' .. self.info) or nil)
end
if self.removalNotice then
textCellDiv:tag('span')
:addClass('hide-when-compact')
:tag('i')
:wikitext(string.format(" (%s)", self.removalNotice))
end
else
-- Default text formatting - anything goes.
textCell
:cssText(self.textstyle or nil)
:wikitext(self.text or nil)
end
-- Add the right-hand image.
if self.imageRight then
local imageRightCell = row:tag('td'):addClass('mbox-imageright')
if self.imageCellDiv then
-- If we are using a div, redefine imageRightCell so that the image
-- is inside it.
imageRightCell = imageRightCell:tag('div'):addClass('mbox-image-div')
end
imageRightCell
:wikitext(self.imageRight or nil)
end
-- Add the below row.
if self.below then
boxTable:tag('tr')
:tag('td')
:attr('colspan', self.imageRight and '3' or '2')
:addClass('mbox-text')
:cssText(self.textstyle or nil)
:wikitext(self.below or nil)
end
-- Add error message for invalid type parameters.
if self.invalidTypeError then
root:tag('div')
:addClass('mbox-invalid-type')
:wikitext(string.format(
'This message box is using an invalid "type=%s" parameter and needs fixing.',
self.type or ''
))
end
-- Add categories.
root:wikitext(self:renderCategories() or nil)
return tostring(root)
end
--------------------------------------------------------------------------------
-- Exports
--------------------------------------------------------------------------------
local p, mt = {}, {}
function p._exportClasses()
-- For testing.
return {
MessageBox = MessageBox
}
end
function p.main(boxType, args, cfgTables)
local box = MessageBox.new(boxType, args, cfgTables or mw.loadData(CONFIG_MODULE))
box:setParameters()
box:setCategories()
return box:export()
end
function mt.__index(t, k)
return function (frame)
if not getArgs then
getArgs = require('Module:Arguments').getArgs
end
return t.main(k, getArgs(frame, {trim = false, removeBlanks = false}))
end
end
return setmetatable(p, mt)
bdb0ecc9f26f26b9c0ce12a066a183ac9d4f0705
Module:Infobox
828
21
37
2022-12-27T21:29:12Z
Template:Infobox>Izno
0
merge hlist here
Scribunto
text/plain
local p = {}
local args = {}
local origArgs = {}
local root
local empty_row_categories = {}
local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]'
local has_rows = false
local lists = {
plainlist_t = {
patterns = {
'^plainlist$',
'%splainlist$',
'^plainlist%s',
'%splainlist%s'
},
found = false,
styles = 'Plainlist/styles.css'
},
hlist_t = {
patterns = {
'^hlist$',
'%shlist$',
'^hlist%s',
'%shlist%s'
},
found = false,
styles = 'Hlist/styles.css'
}
}
local function has_list_class(args_to_check)
for _, list in pairs(lists) do
if not list.found then
for _, arg in pairs(args_to_check) do
for _, pattern in ipairs(list.patterns) do
if mw.ustring.find(arg or '', pattern) then
list.found = true
break
end
end
if list.found then break end
end
end
end
end
local function fixChildBoxes(sval, tt)
local function notempty( s ) return s and s:match( '%S' ) end
if notempty(sval) then
local marker = '<span class=special_infobox_marker>'
local s = sval
-- start moving templatestyles and categories inside of table rows
local slast = ''
while slast ~= s do
slast = s
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*%]%])', '%2%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127)', '%2%1')
end
-- end moving templatestyles and categories inside of table rows
s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .. marker)
if s:match(marker) then
s = mw.ustring.gsub(s, marker .. '%s*' .. marker, '')
s = mw.ustring.gsub(s, '([\r\n]|-[^\r\n]*[\r\n])%s*' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '%s*([\r\n]|-)', '%1')
s = mw.ustring.gsub(s, '(</[Cc][Aa][Pp][Tt][Ii][Oo][Nn]%s*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '(<%s*[Tt][Aa][Bb][Ll][Ee][^<>]*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '^(%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '([\r\n]%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '(%s*</[Tt][Aa][Bb][Ll][Ee]%s*>)', '%1')
s = mw.ustring.gsub(s, marker .. '(%s*\n|%})', '%1')
end
if s:match(marker) then
local subcells = mw.text.split(s, marker)
s = ''
for k = 1, #subcells do
if k == 1 then
s = s .. subcells[k] .. '</' .. tt .. '></tr>'
elseif k == #subcells then
local rowstyle = ' style="display:none"'
if notempty(subcells[k]) then rowstyle = '' end
s = s .. '<tr' .. rowstyle ..'><' .. tt .. ' colspan=2>\n' ..
subcells[k]
elseif notempty(subcells[k]) then
if (k % 2) == 0 then
s = s .. subcells[k]
else
s = s .. '<tr><' .. tt .. ' colspan=2>\n' ..
subcells[k] .. '</' .. tt .. '></tr>'
end
end
end
end
-- the next two lines add a newline at the end of lists for the PHP parser
-- [[Special:Diff/849054481]]
-- remove when [[:phab:T191516]] is fixed or OBE
s = mw.ustring.gsub(s, '([\r\n][%*#;:][^\r\n]*)$', '%1\n')
s = mw.ustring.gsub(s, '^([%*#;:][^\r\n]*)$', '%1\n')
s = mw.ustring.gsub(s, '^([%*#;:])', '\n%1')
s = mw.ustring.gsub(s, '^(%{%|)', '\n%1')
return s
else
return sval
end
end
-- Cleans empty tables
local function cleanInfobox()
root = tostring(root)
if has_rows == false then
root = mw.ustring.gsub(root, '<table[^<>]*>%s*</table>', '')
end
end
-- Returns the union of the values of two tables, as a sequence.
local function union(t1, t2)
local vals = {}
for k, v in pairs(t1) do
vals[v] = true
end
for k, v in pairs(t2) do
vals[v] = true
end
local ret = {}
for k, v in pairs(vals) do
table.insert(ret, k)
end
return ret
end
-- Returns a table containing the numbers of the arguments that exist
-- for the specified prefix. For example, if the prefix was 'data', and
-- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}.
local function getArgNums(prefix)
local nums = {}
for k, v in pairs(args) do
local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$')
if num then table.insert(nums, tonumber(num)) end
end
table.sort(nums)
return nums
end
-- Adds a row to the infobox, with either a header cell
-- or a label/data cell combination.
local function addRow(rowArgs)
if rowArgs.header and rowArgs.header ~= '_BLANK_' then
has_rows = true
has_list_class({ rowArgs.rowclass, rowArgs.class, args.headerclass })
root
:tag('tr')
:addClass(rowArgs.rowclass)
:cssText(rowArgs.rowstyle)
:tag('th')
:attr('colspan', '2')
:addClass('infobox-header')
:addClass(rowArgs.class)
:addClass(args.headerclass)
-- @deprecated next; target .infobox-<name> .infobox-header
:cssText(args.headerstyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(fixChildBoxes(rowArgs.header, 'th'))
if rowArgs.data then
root:wikitext(
'[[Category:Pages using infobox templates with ignored data cells]]'
)
end
elseif rowArgs.data and rowArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ rowArgs.rowclass, rowArgs.class })
local row = root:tag('tr')
row:addClass(rowArgs.rowclass)
row:cssText(rowArgs.rowstyle)
if rowArgs.label then
row
:tag('th')
:attr('scope', 'row')
:addClass('infobox-label')
-- @deprecated next; target .infobox-<name> .infobox-label
:cssText(args.labelstyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(rowArgs.label)
:done()
end
local dataCell = row:tag('td')
dataCell
:attr('colspan', not rowArgs.label and '2' or nil)
:addClass(not rowArgs.label and 'infobox-full-data' or 'infobox-data')
:addClass(rowArgs.class)
-- @deprecated next; target .infobox-<name> .infobox(-full)-data
:cssText(rowArgs.datastyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(fixChildBoxes(rowArgs.data, 'td'))
else
table.insert(empty_row_categories, rowArgs.data or '')
end
end
local function renderTitle()
if not args.title then return end
has_rows = true
has_list_class({args.titleclass})
root
:tag('caption')
:addClass('infobox-title')
:addClass(args.titleclass)
-- @deprecated next; target .infobox-<name> .infobox-title
:cssText(args.titlestyle)
:wikitext(args.title)
end
local function renderAboveRow()
if not args.above then return end
has_rows = true
has_list_class({ args.aboveclass })
root
:tag('tr')
:tag('th')
:attr('colspan', '2')
:addClass('infobox-above')
:addClass(args.aboveclass)
-- @deprecated next; target .infobox-<name> .infobox-above
:cssText(args.abovestyle)
:wikitext(fixChildBoxes(args.above,'th'))
end
local function renderBelowRow()
if not args.below then return end
has_rows = true
has_list_class({ args.belowclass })
root
:tag('tr')
:tag('td')
:attr('colspan', '2')
:addClass('infobox-below')
:addClass(args.belowclass)
-- @deprecated next; target .infobox-<name> .infobox-below
:cssText(args.belowstyle)
:wikitext(fixChildBoxes(args.below,'td'))
end
local function addSubheaderRow(subheaderArgs)
if subheaderArgs.data and
subheaderArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ subheaderArgs.rowclass, subheaderArgs.class })
local row = root:tag('tr')
row:addClass(subheaderArgs.rowclass)
local dataCell = row:tag('td')
dataCell
:attr('colspan', '2')
:addClass('infobox-subheader')
:addClass(subheaderArgs.class)
:cssText(subheaderArgs.datastyle)
:cssText(subheaderArgs.rowcellstyle)
:wikitext(fixChildBoxes(subheaderArgs.data, 'td'))
else
table.insert(empty_row_categories, subheaderArgs.data or '')
end
end
local function renderSubheaders()
if args.subheader then
args.subheader1 = args.subheader
end
if args.subheaderrowclass then
args.subheaderrowclass1 = args.subheaderrowclass
end
local subheadernums = getArgNums('subheader')
for k, num in ipairs(subheadernums) do
addSubheaderRow({
data = args['subheader' .. tostring(num)],
-- @deprecated next; target .infobox-<name> .infobox-subheader
datastyle = args.subheaderstyle,
rowcellstyle = args['subheaderstyle' .. tostring(num)],
class = args.subheaderclass,
rowclass = args['subheaderrowclass' .. tostring(num)]
})
end
end
local function addImageRow(imageArgs)
if imageArgs.data and
imageArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ imageArgs.rowclass, imageArgs.class })
local row = root:tag('tr')
row:addClass(imageArgs.rowclass)
local dataCell = row:tag('td')
dataCell
:attr('colspan', '2')
:addClass('infobox-image')
:addClass(imageArgs.class)
:cssText(imageArgs.datastyle)
:wikitext(fixChildBoxes(imageArgs.data, 'td'))
else
table.insert(empty_row_categories, imageArgs.data or '')
end
end
local function renderImages()
if args.image then
args.image1 = args.image
end
if args.caption then
args.caption1 = args.caption
end
local imagenums = getArgNums('image')
for k, num in ipairs(imagenums) do
local caption = args['caption' .. tostring(num)]
local data = mw.html.create():wikitext(args['image' .. tostring(num)])
if caption then
data
:tag('div')
:addClass('infobox-caption')
-- @deprecated next; target .infobox-<name> .infobox-caption
:cssText(args.captionstyle)
:wikitext(caption)
end
addImageRow({
data = tostring(data),
-- @deprecated next; target .infobox-<name> .infobox-image
datastyle = args.imagestyle,
class = args.imageclass,
rowclass = args['imagerowclass' .. tostring(num)]
})
end
end
-- When autoheaders are turned on, preprocesses the rows
local function preprocessRows()
if not args.autoheaders then return end
local rownums = union(getArgNums('header'), getArgNums('data'))
table.sort(rownums)
local lastheader
for k, num in ipairs(rownums) do
if args['header' .. tostring(num)] then
if lastheader then
args['header' .. tostring(lastheader)] = nil
end
lastheader = num
elseif args['data' .. tostring(num)] and
args['data' .. tostring(num)]:gsub(
category_in_empty_row_pattern, ''
):match('^%S') then
local data = args['data' .. tostring(num)]
if data:gsub(category_in_empty_row_pattern, ''):match('%S') then
lastheader = nil
end
end
end
if lastheader then
args['header' .. tostring(lastheader)] = nil
end
end
-- Gets the union of the header and data argument numbers,
-- and renders them all in order
local function renderRows()
local rownums = union(getArgNums('header'), getArgNums('data'))
table.sort(rownums)
for k, num in ipairs(rownums) do
addRow({
header = args['header' .. tostring(num)],
label = args['label' .. tostring(num)],
data = args['data' .. tostring(num)],
datastyle = args.datastyle,
class = args['class' .. tostring(num)],
rowclass = args['rowclass' .. tostring(num)],
-- @deprecated next; target .infobox-<name> rowclass
rowstyle = args['rowstyle' .. tostring(num)],
rowcellstyle = args['rowcellstyle' .. tostring(num)]
})
end
end
local function renderNavBar()
if not args.name then return end
has_rows = true
root
:tag('tr')
:tag('td')
:attr('colspan', '2')
:addClass('infobox-navbar')
:wikitext(require('Module:Navbar')._navbar{
args.name,
mini = 1,
})
end
local function renderItalicTitle()
local italicTitle = args['italic title'] and mw.ustring.lower(args['italic title'])
if italicTitle == '' or italicTitle == 'force' or italicTitle == 'yes' then
root:wikitext(require('Module:Italic title')._main({}))
end
end
-- Categories in otherwise empty rows are collected in empty_row_categories.
-- This function adds them to the module output. It is not affected by
-- args.decat because this module should not prevent module-external categories
-- from rendering.
local function renderEmptyRowCategories()
for _, s in ipairs(empty_row_categories) do
root:wikitext(s)
end
end
-- Render tracking categories. args.decat == turns off tracking categories.
local function renderTrackingCategories()
if args.decat == 'yes' then return end
if args.child == 'yes' then
if args.title then
root:wikitext(
'[[Category:Pages using embedded infobox templates with the title parameter]]'
)
end
elseif #(getArgNums('data')) == 0 and mw.title.getCurrentTitle().namespace == 0 then
root:wikitext('[[Category:Articles using infobox templates with no data rows]]')
end
end
--[=[
Loads the templatestyles for the infobox.
TODO: FINISH loading base templatestyles here rather than in
MediaWiki:Common.css. There are 4-5000 pages with 'raw' infobox tables.
See [[Mediawiki_talk:Common.css/to_do#Infobox]] and/or come help :).
When we do this we should clean up the inline CSS below too.
Will have to do some bizarre conversion category like with sidebar.
]=]
local function loadTemplateStyles()
local frame = mw.getCurrentFrame()
local hlist_templatestyles = ''
if lists.hlist_t.found then
hlist_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = lists.hlist_t.styles }
}
end
local plainlist_templatestyles = ''
if lists.plainlist_t.found then
plainlist_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = lists.plainlist_t.styles }
}
end
-- See function description
local base_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = 'Module:Infobox/styles.css' }
}
local templatestyles = ''
if args['templatestyles'] then
templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['templatestyles'] }
}
end
local child_templatestyles = ''
if args['child templatestyles'] then
child_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['child templatestyles'] }
}
end
local grandchild_templatestyles = ''
if args['grandchild templatestyles'] then
grandchild_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['grandchild templatestyles'] }
}
end
return table.concat({
-- hlist -> plainlist -> base is best-effort to preserve old Common.css ordering.
-- this ordering is not a guarantee because the rows of interest invoking
-- each class may not be on a specific page
hlist_templatestyles,
plainlist_templatestyles,
base_templatestyles,
templatestyles,
child_templatestyles,
grandchild_templatestyles
})
end
-- common functions between the child and non child cases
local function structure_infobox_common()
renderSubheaders()
renderImages()
preprocessRows()
renderRows()
renderBelowRow()
renderNavBar()
renderItalicTitle()
renderEmptyRowCategories()
renderTrackingCategories()
cleanInfobox()
end
-- Specify the overall layout of the infobox, with special settings if the
-- infobox is used as a 'child' inside another infobox.
local function _infobox()
if args.child ~= 'yes' then
root = mw.html.create('table')
root
:addClass(args.subbox == 'yes' and 'infobox-subbox' or 'infobox')
:addClass(args.bodyclass)
-- @deprecated next; target .infobox-<name>
:cssText(args.bodystyle)
has_list_class({ args.bodyclass })
renderTitle()
renderAboveRow()
else
root = mw.html.create()
root
:wikitext(args.title)
end
structure_infobox_common()
return loadTemplateStyles() .. root
end
-- If the argument exists and isn't blank, add it to the argument table.
-- Blank arguments are treated as nil to match the behaviour of ParserFunctions.
local function preprocessSingleArg(argName)
if origArgs[argName] and origArgs[argName] ~= '' then
args[argName] = origArgs[argName]
end
end
-- Assign the parameters with the given prefixes to the args table, in order, in
-- batches of the step size specified. This is to prevent references etc. from
-- appearing in the wrong order. The prefixTable should be an array containing
-- tables, each of which has two possible fields, a "prefix" string and a
-- "depend" table. The function always parses parameters containing the "prefix"
-- string, but only parses parameters in the "depend" table if the prefix
-- parameter is present and non-blank.
local function preprocessArgs(prefixTable, step)
if type(prefixTable) ~= 'table' then
error("Non-table value detected for the prefix table", 2)
end
if type(step) ~= 'number' then
error("Invalid step value detected", 2)
end
-- Get arguments without a number suffix, and check for bad input.
for i,v in ipairs(prefixTable) do
if type(v) ~= 'table' or type(v.prefix) ~= "string" or
(v.depend and type(v.depend) ~= 'table') then
error('Invalid input detected to preprocessArgs prefix table', 2)
end
preprocessSingleArg(v.prefix)
-- Only parse the depend parameter if the prefix parameter is present
-- and not blank.
if args[v.prefix] and v.depend then
for j, dependValue in ipairs(v.depend) do
if type(dependValue) ~= 'string' then
error('Invalid "depend" parameter value detected in preprocessArgs')
end
preprocessSingleArg(dependValue)
end
end
end
-- Get arguments with number suffixes.
local a = 1 -- Counter variable.
local moreArgumentsExist = true
while moreArgumentsExist == true do
moreArgumentsExist = false
for i = a, a + step - 1 do
for j,v in ipairs(prefixTable) do
local prefixArgName = v.prefix .. tostring(i)
if origArgs[prefixArgName] then
-- Do another loop if any arguments are found, even blank ones.
moreArgumentsExist = true
preprocessSingleArg(prefixArgName)
end
-- Process the depend table if the prefix argument is present
-- and not blank, or we are processing "prefix1" and "prefix" is
-- present and not blank, and if the depend table is present.
if v.depend and (args[prefixArgName] or (i == 1 and args[v.prefix])) then
for j,dependValue in ipairs(v.depend) do
local dependArgName = dependValue .. tostring(i)
preprocessSingleArg(dependArgName)
end
end
end
end
a = a + step
end
end
-- Parse the data parameters in the same order that the old {{infobox}} did, so
-- that references etc. will display in the expected places. Parameters that
-- depend on another parameter are only processed if that parameter is present,
-- to avoid phantom references appearing in article reference lists.
local function parseDataParameters()
preprocessSingleArg('autoheaders')
preprocessSingleArg('child')
preprocessSingleArg('bodyclass')
preprocessSingleArg('subbox')
preprocessSingleArg('bodystyle')
preprocessSingleArg('title')
preprocessSingleArg('titleclass')
preprocessSingleArg('titlestyle')
preprocessSingleArg('above')
preprocessSingleArg('aboveclass')
preprocessSingleArg('abovestyle')
preprocessArgs({
{prefix = 'subheader', depend = {'subheaderstyle', 'subheaderrowclass'}}
}, 10)
preprocessSingleArg('subheaderstyle')
preprocessSingleArg('subheaderclass')
preprocessArgs({
{prefix = 'image', depend = {'caption', 'imagerowclass'}}
}, 10)
preprocessSingleArg('captionstyle')
preprocessSingleArg('imagestyle')
preprocessSingleArg('imageclass')
preprocessArgs({
{prefix = 'header'},
{prefix = 'data', depend = {'label'}},
{prefix = 'rowclass'},
{prefix = 'rowstyle'},
{prefix = 'rowcellstyle'},
{prefix = 'class'}
}, 50)
preprocessSingleArg('headerclass')
preprocessSingleArg('headerstyle')
preprocessSingleArg('labelstyle')
preprocessSingleArg('datastyle')
preprocessSingleArg('below')
preprocessSingleArg('belowclass')
preprocessSingleArg('belowstyle')
preprocessSingleArg('name')
-- different behaviour for italics if blank or absent
args['italic title'] = origArgs['italic title']
preprocessSingleArg('decat')
preprocessSingleArg('templatestyles')
preprocessSingleArg('child templatestyles')
preprocessSingleArg('grandchild templatestyles')
end
-- If called via #invoke, use the args passed into the invoking template.
-- Otherwise, for testing purposes, assume args are being passed directly in.
function p.infobox(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
parseDataParameters()
return _infobox()
end
-- For calling via #invoke within a template
function p.infoboxTemplate(frame)
origArgs = {}
for k,v in pairs(frame.args) do origArgs[k] = mw.text.trim(v) end
parseDataParameters()
return _infobox()
end
return p
0ddb7e5c8426d67cd589b710efb9912ddfb67fea
Module:List
828
35
65
2022-12-29T17:57:56Z
Template:Infobox>Izno
0
add templatestyles for hlist
Scribunto
text/plain
local libUtil = require('libraryUtil')
local checkType = libUtil.checkType
local mTableTools = require('Module:TableTools')
local p = {}
local listTypes = {
['bulleted'] = true,
['unbulleted'] = true,
['horizontal'] = true,
['ordered'] = true,
['horizontal_ordered'] = true
}
function p.makeListData(listType, args)
-- Constructs a data table to be passed to p.renderList.
local data = {}
-- Classes and TemplateStyles
data.classes = {}
data.templatestyles = ''
if listType == 'horizontal' or listType == 'horizontal_ordered' then
table.insert(data.classes, 'hlist')
data.templatestyles = mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'Hlist/styles.css' }
}
elseif listType == 'unbulleted' then
table.insert(data.classes, 'plainlist')
data.templatestyles = mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'Plainlist/styles.css' }
}
end
table.insert(data.classes, args.class)
-- Main div style
data.style = args.style
-- Indent for horizontal lists
if listType == 'horizontal' or listType == 'horizontal_ordered' then
local indent = tonumber(args.indent)
indent = indent and indent * 1.6 or 0
if indent > 0 then
data.marginLeft = indent .. 'em'
end
end
-- List style types for ordered lists
-- This could be "1, 2, 3", "a, b, c", or a number of others. The list style
-- type is either set by the "type" attribute or the "list-style-type" CSS
-- property.
if listType == 'ordered' or listType == 'horizontal_ordered' then
data.listStyleType = args.list_style_type or args['list-style-type']
data.type = args['type']
-- Detect invalid type attributes and attempt to convert them to
-- list-style-type CSS properties.
if data.type
and not data.listStyleType
and not tostring(data.type):find('^%s*[1AaIi]%s*$')
then
data.listStyleType = data.type
data.type = nil
end
end
-- List tag type
if listType == 'ordered' or listType == 'horizontal_ordered' then
data.listTag = 'ol'
else
data.listTag = 'ul'
end
-- Start number for ordered lists
data.start = args.start
if listType == 'horizontal_ordered' then
-- Apply fix to get start numbers working with horizontal ordered lists.
local startNum = tonumber(data.start)
if startNum then
data.counterReset = 'listitem ' .. tostring(startNum - 1)
end
end
-- List style
-- ul_style and ol_style are included for backwards compatibility. No
-- distinction is made for ordered or unordered lists.
data.listStyle = args.list_style
-- List items
-- li_style is included for backwards compatibility. item_style was included
-- to be easier to understand for non-coders.
data.itemStyle = args.item_style or args.li_style
data.items = {}
for _, num in ipairs(mTableTools.numKeys(args)) do
local item = {}
item.content = args[num]
item.style = args['item' .. tostring(num) .. '_style']
or args['item_style' .. tostring(num)]
item.value = args['item' .. tostring(num) .. '_value']
or args['item_value' .. tostring(num)]
table.insert(data.items, item)
end
return data
end
function p.renderList(data)
-- Renders the list HTML.
-- Return the blank string if there are no list items.
if type(data.items) ~= 'table' or #data.items < 1 then
return ''
end
-- Render the main div tag.
local root = mw.html.create('div')
for _, class in ipairs(data.classes or {}) do
root:addClass(class)
end
root:css{['margin-left'] = data.marginLeft}
if data.style then
root:cssText(data.style)
end
-- Render the list tag.
local list = root:tag(data.listTag or 'ul')
list
:attr{start = data.start, type = data.type}
:css{
['counter-reset'] = data.counterReset,
['list-style-type'] = data.listStyleType
}
if data.listStyle then
list:cssText(data.listStyle)
end
-- Render the list items
for _, t in ipairs(data.items or {}) do
local item = list:tag('li')
if data.itemStyle then
item:cssText(data.itemStyle)
end
if t.style then
item:cssText(t.style)
end
item
:attr{value = t.value}
:wikitext(t.content)
end
return data.templatestyles .. tostring(root)
end
function p.renderTrackingCategories(args)
local isDeprecated = false -- Tracks deprecated parameters.
for k, v in pairs(args) do
k = tostring(k)
if k:find('^item_style%d+$') or k:find('^item_value%d+$') then
isDeprecated = true
break
end
end
local ret = ''
if isDeprecated then
ret = ret .. '[[Category:List templates with deprecated parameters]]'
end
return ret
end
function p.makeList(listType, args)
if not listType or not listTypes[listType] then
error(string.format(
"bad argument #1 to 'makeList' ('%s' is not a valid list type)",
tostring(listType)
), 2)
end
checkType('makeList', 2, args, 'table')
local data = p.makeListData(listType, args)
local list = p.renderList(data)
local trackingCategories = p.renderTrackingCategories(args)
return list .. trackingCategories
end
for listType in pairs(listTypes) do
p[listType] = function (frame)
local mArguments = require('Module:Arguments')
local origArgs = mArguments.getArgs(frame, {
valueFunc = function (key, value)
if not value or not mw.ustring.find(value, '%S') then return nil end
if mw.ustring.find(value, '^%s*[%*#;:]') then
return value
else
return value:match('^%s*(.-)%s*$')
end
return nil
end
})
-- Copy all the arguments to a new table, for faster indexing.
local args = {}
for k, v in pairs(origArgs) do
args[k] = v
end
return p.makeList(listType, args)
end
end
return p
7a4f36a6e9cd56370bdd8207d23694124821dc1a
Template:Distinguish
10
42
79
2023-02-04T21:16:13Z
Template:Infobox>Hog Farm
0
[[Wikipedia:Templates for discussion/Log/2023 February 4#Template:Distinguish]] closed as keep ([[WP:XFDC#4.0.13|XFDcloser]])
wikitext
text/x-wiki
{{#invoke:Distinguish|distinguish}}<noinclude><!-- splitting these lines causes {{Documentation}} template to terminate green shading when Distinguish is used in /doc pages. -->
{{Documentation}}
<!-- Add categories to the /doc subpage and interwikis to Wikidata, not here! -->
</noinclude>
f949a4cbfd6eb0ab77b832e69059a40a964b1fd8
Main Page
0
1
1
2023-07-25T17:33:11Z
MediaWiki default
1
Create main page
wikitext
text/x-wiki
__NOTOC__
== Welcome to {{SITENAME}}! ==
This Main Page was created automatically and it seems it hasn't been replaced yet.
=== For the bureaucrat(s) of this wiki ===
Hello, and welcome to your new wiki! Thank you for choosing Miraheze for the hosting of your wiki, we hope you will enjoy our hosting.
You can immediately start working on your wiki or whenever you want.
Need help? No problem! We will help you with your wiki as needed. To start, try checking out these helpful links:
* [[mw:Special:MyLanguage/Help:Contents|MediaWiki guide]] (e.g. navigation, editing, deleting pages, blocking users)
* [[meta:Special:MyLanguage/FAQ|Miraheze FAQ]]
* [[meta:Special:MyLanguage/Request features|Request settings changes on your wiki]]. (Extensions, Skin and Logo/Favicon changes should be done through [[Special:ManageWiki]] on your wiki, see [[meta:Special:MyLanguage/ManageWiki|ManageWiki]] for more information.)
==== I still don't understand X! ====
Well, that's no problem. Even if something isn't explained in the documentation/FAQ, we are still happy to help you. You can find us here:
* [[meta:Special:MyLanguage/Help center|On our own Miraheze wiki]]
* On [[phab:|Phabricator]]
* On [https://miraheze.org/discord Discord]
* On IRC in #miraheze on irc.libera.chat ([irc://irc.libera.chat/%23miraheze direct link]; [https://web.libera.chat/?channel=#miraheze webchat])
=== For visitors of this wiki ===
Hello, the default Main Page of this wiki (this page) has not yet been replaced by the bureaucrat(s) of this wiki. The bureaucrat(s) might still be working on a Main Page, so please check again later!
21236ac3f8d65e5563b6da6b70815ca6bf1e6616
User:CheSnail
2
2
2
2023-08-09T03:52:42Z
CheSnail
2
Created page with "I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own. == Favorite Media == Some of my favorite media with queer rep include: * The Star Trek franchise * Bojack Horseman * Glee * Saved By The Bell (2020) * Crazy Ex-Girlfriend * Heartstopper * The Stargate franchis..."
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
72237d690e46068f577976d35eaea924c5371916
3
2
2023-08-20T05:45:51Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* Phượng Hoàng (Outside Perspective)
* Jewel Baumgartner (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Eve Grenville (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Rena Ingram (The Show Must Go On)
* Gwen Dale (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Yamila Acuna Zegarra (Devil Watch)
* Channary Soun (Nightfall)
* Julia Aiza Villa (The Exchange)
=== My Gay Characters ===
* Josse Segal (CLASH)
* Basil Starr (CLASH)
* Zack Harper (CLASH)
* Ode Shadow (CLASH)
* Darko Novak (Outside Perspective)
* Cullen Bruce (Outside Perspective)
* Jorgino Etienam Gourriel (Outside Perspective)
* Nick O'Malley (The Show Must Go On)
* Caleb Tennyson (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Joel Coy-Young (Devil Watch)
* Caolán Neville (Nightfall)
* Jair Avenida Caballo (The Exchange)
* Rowan Jin (The Exchange)
* Víctor Valiente Zamorano (The Exchange)
* Simon Lefèvre (The Exchange)
* Daniel Gevorgyan (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Bi Characters ===
* Pierce Abraham (CLASH)
* Belle Starr (CLASH)
* Darko Novak (Outside Perspective)
* Pièrre Beaulieu (Outside Perspective)
* Roz Beridze (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Desiree Chan (The Show Must Go On)
* Don Holland (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Lake Manivong (Devil Watch)
* Quinn Ó Rinn (Nightfall)
* Travis Graves (Nightfall)
* Tomás Vincent (Nightfall)
* Bram Klein (The Exchange)
* Menna Elrashidy (The Exchange)
** Bicurious
* Jett Kim (Unfinished Business)
* Wira (Unfinished Business)
=== My Trans Characters ===
* Angel Ashworth (CLASH)
* Jewel Baumgartner (Outside Perspective)
* Robin Hartell (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Tilly Harrell (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Kira Varley (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Quin Collingwood (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Yamila Acuna Zegarra (Devil Watch)
* Cedardrop (Nightfall)
* Ryan McNiven (Nightfall)
* Aki Kazama (The Exchange)
* Menna Elrashidy (The Exchange)
* Simon Lefèvre (The Exchange)
* Mari Arendse (Unfinished Business)
* Wira (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Questioning Characters ===
* Ven Jackson (CLASH)
* Haruto Arima (Outside Perspective)
* Nightlight Benson (Outside Perspective)
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Shawn Wolfe (The Show Must Go On)
* Mel Chaplin (The Show Must Go On)
* Nate Parks (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
* Xavier Félix Santiago Magro Rios (The Show Must Go On)
* Veronika Kristiansen (The Show Must Go On)
* Christi McLain (The Show Must Go On)
* Jay Kedves (Devil Watch)
* Mari Arendse (Unfinished Business)
** Quoiattraction
=== My Ace Characters ===
* Angel Ashworth (CLASH)
* Sam Garrett (CLASH)
* Eve Grenville (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
=== My Aro Characters ===
* Romilly Bonney (The Show Must Go On)
* Della Alvalle (Nightfall)
=== My AroAce Characters ===
* Tyler Archer (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Ace Alvalle (Nightfall)
* Wira (Unfinished Business)
=== My Pan Characters ===
* Belle Starr (CLASH)
* Aalish McCasky (CLASH)
* Sophie Segal (CLASH)
* Ivory Tatton (Outside Perspective)
* Lucy Cookson (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Chan Smith (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Eden Abbey (The Show Must Go On)
* Dax Sheppard (Devil Watch)
* Owen Whalen (Nightfall)
=== My Omni Characters ===
* Jess Cobb (The Show Must Go On)
=== My Poly Characters ===
* Hal Witherspoon (The Show Must Go On)
* Zef Karim (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Demi Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
=== My Non-Binary Characters ===
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Owen Whalen (Nightfall)
* AI Stein (Neon Apocalypse)
=== My Agender Characters ===
* Terry Fan (The Show Must Go On)
* Ave Alvalle (Nightfall)
=== My Genderfluid Characters ===
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Bigender Characters ===
* Tilly Harrell (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Other M-Spec Characters ===
* Anarchy Garcia (CLASH)
** Yukiransexual
* Darko Novak (Outside Perspective)
** Solibroussexual
* Desiree Chan (The Show Must Go On)
** Multiaesthetic
* Davy Baumann (The Show Must Go On)
** Ambisexual
* Felix Adams (The Show Must Go On)
* Ġorġ Panzavecchia (The Show Must Go On)
* Rórdán O'Berne (Nightfall)
** Aliquissexual
* Víctor Valiente Zamorano
** Disexual
* Cam Albuquerque (Neon Apocalypse)
=== My Other A-Spec Characters ===
* Belle Starr (CLASH)
** Autosexual
* Eve Grenville (The Show Must Go On)
** Alexmoromantic
* Tilly Harrell (The Show Must GO On)
** Divisexual
** Apresromantic
* Éva Bakó (The Show Must Go On)
** Apothi AroAce
* Quin Collingwood (The Show Must Go On)
** Omniasexual
* Dax Sheppard (Devil Watch)
** Cupiosensual
* Travis Graves (Nightfall)
** Atomosexual
* Ryan McNiven (Nightfall)
** Inataromantic
* Della Alvalle (Nightfall)
** Apothisexual
** Anattractional
* Ace Alvalle (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* Julia Aiza Villa
** Aplatonic
* Finn Miller
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* Robin Hartell (Outside Perspective)
** Torstellic
* Terry Fan (The Show Must Go On)
** Agenilian
* Quin Collingwood (The Show Must Go On)
** Pansyic
=== My Fluid Attraction Characters ===
* Rory Anker (The Show Must Go On)
** Resexual
=== My Gender Neutral Characters ===
* Robin Hartell (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* Billie Mills (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* Owen Whalen (Nightfall)
** Anarchogender
* Della Alvalle (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* Dax Shepaprd (Devil Watch)
** Cassgender
* Lake Manivong (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* Jewel Baumgartner (Outside Perspective)
** Vapogirl
* Robin Hartell (Outside Perspective)
** Xenrell
** Excitigender
* Lucy Cookson (The Show Must Go On)
** Helianfemme
* Charlie Coy-Young (Devil Watch)
** Silvagender
** Cottagegender
* Tomás Vincent (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* Eve Grenville (The Show Must Go On)
** Autifein
* Channary Soun (Nightfall)
** Autigender
=== My Intersex Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
** Cytochrome PORD
* Éva Bakó (The Show Must Go On)
** Müllerian Agenesis
* Lake Manivong (Devil Watch)
** 45,X/46,XY Mosaicism
* Ace Alvalle (Nightfall)
** 49,XXXXY Syndrome
* Jair Avenida Caballo (The Exchange)
** Hypergonadism
=== My Polyamorous Characters ===
* Quin Collingwood (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Rórdán O'Berne (Nightfall)
** Gamyflux
=== My Unspecified Queer Characters ===
* Aqua Jackson (CLASH)
* Book Janssen (The Show Must Go On)
* Tara Simen (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Monarhy Flitrabbow (Nightfall)
* Cedardrop (Nightfall)
a38767900106bee57ed80b8c21ad6575e97653e0
4
3
2023-08-20T05:47:16Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* Phượng Hoàng (Outside Perspective)
* Jewel Baumgartner (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Eve Grenville (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Rena Ingram (The Show Must Go On)
* Gwen Dale (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Yamila Acuna Zegarra (Devil Watch)
* Channary Soun (Nightfall)
* Julia Aiza Villa (The Exchange)
=== My Gay Characters ===
* Josse Segal (CLASH)
* Basil Starr (CLASH)
* Zack Harper (CLASH)
* Ode Shadow (CLASH)
* Darko Novak (Outside Perspective)
* Cullen Bruce (Outside Perspective)
* Jorgino Etienam Gourriel (Outside Perspective)
* Nick O'Malley (The Show Must Go On)
* Caleb Tennyson (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Joel Coy-Young (Devil Watch)
* Caolán Neville (Nightfall)
* Jair Avenida Caballo (The Exchange)
* Rowan Jin (The Exchange)
* Víctor Valiente Zamorano (The Exchange)
* Simon Lefèvre (The Exchange)
* Daniel Gevorgyan (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Bi Characters ===
* Pierce Abraham (CLASH)
* Belle Starr (CLASH)
* Darko Novak (Outside Perspective)
* Pièrre Beaulieu (Outside Perspective)
* Roz Beridze (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Desiree Chan (The Show Must Go On)
* Don Holland (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Lake Manivong (Devil Watch)
* Quinn Ó Rinn (Nightfall)
* Travis Graves (Nightfall)
* Tomás Vincent (Nightfall)
* Bram Klein (The Exchange)
* Menna Elrashidy (The Exchange)
** Bicurious
* Jett Kim (Unfinished Business)
* Wira (Unfinished Business)
=== My Trans Characters ===
* Angel Ashworth (CLASH)
* Jewel Baumgartner (Outside Perspective)
* Robin Hartell (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Tilly Harrell (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Kira Varley (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Quin Collingwood (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Yamila Acuna Zegarra (Devil Watch)
* Cedardrop (Nightfall)
* Ryan McNiven (Nightfall)
* Aki Kazama (The Exchange)
* Menna Elrashidy (The Exchange)
* Simon Lefèvre (The Exchange)
* Mari Arendse (Unfinished Business)
* Wira (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Questioning Characters ===
* Ven Jackson (CLASH)
* Haruto Arima (Outside Perspective)
* Nightlight Benson (Outside Perspective)
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Shawn Wolfe (The Show Must Go On)
* Mel Chaplin (The Show Must Go On)
* Nate Parks (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
* Xavier Félix Santiago Magro Rios (The Show Must Go On)
* Veronika Kristiansen (The Show Must Go On)
* Christi McLain (The Show Must Go On)
* Jay Kedves (Devil Watch)
* Mari Arendse (Unfinished Business)
** Quoiattraction
=== My Ace Characters ===
* Angel Ashworth (CLASH)
* Sam Garrett (CLASH)
* Eve Grenville (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
=== My Aro Characters ===
* Romilly Bonney (The Show Must Go On)
* Della Alvalle (Nightfall)
=== My AroAce Characters ===
* Tyler Archer (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Ace Alvalle (Nightfall)
* Wira (Unfinished Business)
=== My Pan Characters ===
* Belle Starr (CLASH)
* Aalish McCasky (CLASH)
* Sophie Segal (CLASH)
* Ivory Tatton (Outside Perspective)
* Lucy Cookson (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Chan Smith (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Eden Abbey (The Show Must Go On)
* Dax Sheppard (Devil Watch)
* Owen Whalen (Nightfall)
=== My Omni Characters ===
* Jess Cobb (The Show Must Go On)
=== My Poly Characters ===
* Hal Witherspoon (The Show Must Go On)
* Zef Karim (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Demi Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
=== My Non-Binary Characters ===
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Owen Whalen (Nightfall)
* AI Stein (Neon Apocalypse)
=== My Agender Characters ===
* Terry Fan (The Show Must Go On)
* Ave Alvalle (Nightfall)
=== My Genderfluid Characters ===
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Bigender Characters ===
* Tilly Harrell (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Other M-Spec Characters ===
* Anarchy Garcia (CLASH)
** Yukiransexual
* Darko Novak (Outside Perspective)
** Solibroussexual
* Desiree Chan (The Show Must Go On)
** Multiaesthetic
* Davy Baumann (The Show Must Go On)
** Ambisexual
* Felix Adams (The Show Must Go On)
* Ġorġ Panzavecchia (The Show Must Go On)
* Rórdán O'Berne (Nightfall)
** Aliquissexual
* Víctor Valiente Zamorano
** Disexual
* Cam Albuquerque (Neon Apocalypse)
=== My Other A-Spec Characters ===
* Belle Starr (CLASH)
** Autosexual
* Eve Grenville (The Show Must Go On)
** Alexmoromantic
* Tilly Harrell (The Show Must GO On)
** Divisexual
** Apresromantic
* Éva Bakó (The Show Must Go On)
** Apothi AroAce
* Quin Collingwood (The Show Must Go On)
** Omniasexual
* Dax Sheppard (Devil Watch)
** Cupiosensual
* Travis Graves (Nightfall)
** Atomosexual
* Ryan McNiven (Nightfall)
** Inataromantic
* Della Alvalle (Nightfall)
** Apothisexual
** Anattractional
* Ace Alvalle (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* Julia Aiza Villa (The Exchange)
** Aplatonic
* Finn Miller (Neon Apocalypse)
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* Robin Hartell (Outside Perspective)
** Torstellic
* Terry Fan (The Show Must Go On)
** Agenilian
* Quin Collingwood (The Show Must Go On)
** Pansyic
=== My Fluid Attraction Characters ===
* Rory Anker (The Show Must Go On)
** Resexual
=== My Gender Neutral Characters ===
* Robin Hartell (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* Billie Mills (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* Owen Whalen (Nightfall)
** Anarchogender
* Della Alvalle (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* Dax Shepaprd (Devil Watch)
** Cassgender
* Lake Manivong (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* Jewel Baumgartner (Outside Perspective)
** Vapogirl
* Robin Hartell (Outside Perspective)
** Xenrell
** Excitigender
* Lucy Cookson (The Show Must Go On)
** Helianfemme
* Charlie Coy-Young (Devil Watch)
** Silvagender
** Cottagegender
* Tomás Vincent (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* Eve Grenville (The Show Must Go On)
** Autifein
* Channary Soun (Nightfall)
** Autigender
=== My Intersex Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
** Cytochrome PORD
* Éva Bakó (The Show Must Go On)
** Müllerian Agenesis
* Lake Manivong (Devil Watch)
** 45,X/46,XY Mosaicism
* Ace Alvalle (Nightfall)
** 49,XXXXY Syndrome
* Jair Avenida Caballo (The Exchange)
** Hypergonadism
=== My Polyamorous Characters ===
* Quin Collingwood (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Rórdán O'Berne (Nightfall)
** Gamyflux
=== My Unspecified Queer Characters ===
* Aqua Jackson (CLASH)
* Book Janssen (The Show Must Go On)
* Tara Simen (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Monarhy Flitrabbow (Nightfall)
* Cedardrop (Nightfall)
e2e25643014c30326f7fc2f7bedf3df3017ea970
5
4
2023-08-20T05:47:48Z
CheSnail
2
/* My Other M-Spec Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* Phượng Hoàng (Outside Perspective)
* Jewel Baumgartner (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Eve Grenville (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Rena Ingram (The Show Must Go On)
* Gwen Dale (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Yamila Acuna Zegarra (Devil Watch)
* Channary Soun (Nightfall)
* Julia Aiza Villa (The Exchange)
=== My Gay Characters ===
* Josse Segal (CLASH)
* Basil Starr (CLASH)
* Zack Harper (CLASH)
* Ode Shadow (CLASH)
* Darko Novak (Outside Perspective)
* Cullen Bruce (Outside Perspective)
* Jorgino Etienam Gourriel (Outside Perspective)
* Nick O'Malley (The Show Must Go On)
* Caleb Tennyson (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Joel Coy-Young (Devil Watch)
* Caolán Neville (Nightfall)
* Jair Avenida Caballo (The Exchange)
* Rowan Jin (The Exchange)
* Víctor Valiente Zamorano (The Exchange)
* Simon Lefèvre (The Exchange)
* Daniel Gevorgyan (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Bi Characters ===
* Pierce Abraham (CLASH)
* Belle Starr (CLASH)
* Darko Novak (Outside Perspective)
* Pièrre Beaulieu (Outside Perspective)
* Roz Beridze (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Desiree Chan (The Show Must Go On)
* Don Holland (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Lake Manivong (Devil Watch)
* Quinn Ó Rinn (Nightfall)
* Travis Graves (Nightfall)
* Tomás Vincent (Nightfall)
* Bram Klein (The Exchange)
* Menna Elrashidy (The Exchange)
** Bicurious
* Jett Kim (Unfinished Business)
* Wira (Unfinished Business)
=== My Trans Characters ===
* Angel Ashworth (CLASH)
* Jewel Baumgartner (Outside Perspective)
* Robin Hartell (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Tilly Harrell (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Kira Varley (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Quin Collingwood (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Yamila Acuna Zegarra (Devil Watch)
* Cedardrop (Nightfall)
* Ryan McNiven (Nightfall)
* Aki Kazama (The Exchange)
* Menna Elrashidy (The Exchange)
* Simon Lefèvre (The Exchange)
* Mari Arendse (Unfinished Business)
* Wira (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Questioning Characters ===
* Ven Jackson (CLASH)
* Haruto Arima (Outside Perspective)
* Nightlight Benson (Outside Perspective)
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Shawn Wolfe (The Show Must Go On)
* Mel Chaplin (The Show Must Go On)
* Nate Parks (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
* Xavier Félix Santiago Magro Rios (The Show Must Go On)
* Veronika Kristiansen (The Show Must Go On)
* Christi McLain (The Show Must Go On)
* Jay Kedves (Devil Watch)
* Mari Arendse (Unfinished Business)
** Quoiattraction
=== My Ace Characters ===
* Angel Ashworth (CLASH)
* Sam Garrett (CLASH)
* Eve Grenville (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
=== My Aro Characters ===
* Romilly Bonney (The Show Must Go On)
* Della Alvalle (Nightfall)
=== My AroAce Characters ===
* Tyler Archer (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Ace Alvalle (Nightfall)
* Wira (Unfinished Business)
=== My Pan Characters ===
* Belle Starr (CLASH)
* Aalish McCasky (CLASH)
* Sophie Segal (CLASH)
* Ivory Tatton (Outside Perspective)
* Lucy Cookson (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Chan Smith (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Eden Abbey (The Show Must Go On)
* Dax Sheppard (Devil Watch)
* Owen Whalen (Nightfall)
=== My Omni Characters ===
* Jess Cobb (The Show Must Go On)
=== My Poly Characters ===
* Hal Witherspoon (The Show Must Go On)
* Zef Karim (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Demi Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
=== My Non-Binary Characters ===
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Owen Whalen (Nightfall)
* AI Stein (Neon Apocalypse)
=== My Agender Characters ===
* Terry Fan (The Show Must Go On)
* Ave Alvalle (Nightfall)
=== My Genderfluid Characters ===
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Bigender Characters ===
* Tilly Harrell (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Other M-Spec Characters ===
* Anarchy Garcia (CLASH)
** Yukiransexual
* Darko Novak (Outside Perspective)
** Solibroussexual
* Desiree Chan (The Show Must Go On)
** Multiaesthetic
* Davy Baumann (The Show Must Go On)
** Ambisexual
* Felix Adams (The Show Must Go On)
* Ġorġ Panzavecchia (The Show Must Go On)
* Rórdán O'Berne (Nightfall)
** Aliquissexual
* Víctor Valiente Zamorano (The Exchange)
** Disexual
* Cam Albuquerque (Neon Apocalypse)
=== My Other A-Spec Characters ===
* Belle Starr (CLASH)
** Autosexual
* Eve Grenville (The Show Must Go On)
** Alexmoromantic
* Tilly Harrell (The Show Must GO On)
** Divisexual
** Apresromantic
* Éva Bakó (The Show Must Go On)
** Apothi AroAce
* Quin Collingwood (The Show Must Go On)
** Omniasexual
* Dax Sheppard (Devil Watch)
** Cupiosensual
* Travis Graves (Nightfall)
** Atomosexual
* Ryan McNiven (Nightfall)
** Inataromantic
* Della Alvalle (Nightfall)
** Apothisexual
** Anattractional
* Ace Alvalle (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* Julia Aiza Villa (The Exchange)
** Aplatonic
* Finn Miller (Neon Apocalypse)
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* Robin Hartell (Outside Perspective)
** Torstellic
* Terry Fan (The Show Must Go On)
** Agenilian
* Quin Collingwood (The Show Must Go On)
** Pansyic
=== My Fluid Attraction Characters ===
* Rory Anker (The Show Must Go On)
** Resexual
=== My Gender Neutral Characters ===
* Robin Hartell (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* Billie Mills (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* Owen Whalen (Nightfall)
** Anarchogender
* Della Alvalle (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* Dax Shepaprd (Devil Watch)
** Cassgender
* Lake Manivong (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* Jewel Baumgartner (Outside Perspective)
** Vapogirl
* Robin Hartell (Outside Perspective)
** Xenrell
** Excitigender
* Lucy Cookson (The Show Must Go On)
** Helianfemme
* Charlie Coy-Young (Devil Watch)
** Silvagender
** Cottagegender
* Tomás Vincent (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* Eve Grenville (The Show Must Go On)
** Autifein
* Channary Soun (Nightfall)
** Autigender
=== My Intersex Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
** Cytochrome PORD
* Éva Bakó (The Show Must Go On)
** Müllerian Agenesis
* Lake Manivong (Devil Watch)
** 45,X/46,XY Mosaicism
* Ace Alvalle (Nightfall)
** 49,XXXXY Syndrome
* Jair Avenida Caballo (The Exchange)
** Hypergonadism
=== My Polyamorous Characters ===
* Quin Collingwood (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Rórdán O'Berne (Nightfall)
** Gamyflux
=== My Unspecified Queer Characters ===
* Aqua Jackson (CLASH)
* Book Janssen (The Show Must Go On)
* Tara Simen (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Monarhy Flitrabbow (Nightfall)
* Cedardrop (Nightfall)
e80ad2eee06f547c90bb890fbada56da12cfe72a
6
5
2023-08-20T05:49:28Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* Phượng Hoàng (Outside Perspective)
* Jewel Baumgartner (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Eve Grenville (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Rena Ingram (The Show Must Go On)
* Gwen Dale (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Yamila Acuna Zegarra (Devil Watch)
* Channary Soun (Nightfall)
* Julia Aiza Villa (The Exchange)
=== My Gay Characters ===
* Josse Segal (CLASH)
* Basil Starr (CLASH)
* Zack Harper (CLASH)
* Ode Shadow (CLASH)
* Darko Novak (Outside Perspective)
* Cullen Bruce (Outside Perspective)
* Jorgino Etienam Gourriel (Outside Perspective)
* Nick O'Malley (The Show Must Go On)
* Caleb Tennyson (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Joel Coy-Young (Devil Watch)
* Caolán Neville (Nightfall)
* Jair Avenida Caballo (The Exchange)
* Rowan Jin (The Exchange)
* Víctor Valiente Zamorano (The Exchange)
* Simon Lefèvre (The Exchange)
* Daniel Gevorgyan (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Bi Characters ===
* Pierce Abraham (CLASH)
* Belle Starr (CLASH)
* Darko Novak (Outside Perspective)
* Pièrre Beaulieu (Outside Perspective)
* Roz Beridze (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Desiree Chan (The Show Must Go On)
* Don Holland (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Lake Manivong (Devil Watch)
* Quinn Ó Rinn (Nightfall)
* Travis Graves (Nightfall)
* Tomás Vincent (Nightfall)
* Bram Klein (The Exchange)
* Menna Elrashidy (The Exchange)
** Bicurious
* Jett Kim (Unfinished Business)
* Wira (Unfinished Business)
=== My Trans Characters ===
* Angel Ashworth (CLASH)
* Jewel Baumgartner (Outside Perspective)
* Robin Hartell (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Tilly Harrell (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Kira Varley (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Quin Collingwood (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Yamila Acuna Zegarra (Devil Watch)
* Cedardrop (Nightfall)
* Ryan McNiven (Nightfall)
* Aki Kazama (The Exchange)
* Menna Elrashidy (The Exchange)
* Simon Lefèvre (The Exchange)
* Mari Arendse (Unfinished Business)
* Wira (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Questioning Characters ===
* Ven Jackson (CLASH)
* Haruto Arima (Outside Perspective)
* Nightlight Benson (Outside Perspective)
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Shawn Wolfe (The Show Must Go On)
* Mel Chaplin (The Show Must Go On)
* Nate Parks (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
* Xavier Félix Santiago Magro Rios (The Show Must Go On)
* Veronika Kristiansen (The Show Must Go On)
* Christi McLain (The Show Must Go On)
* Jay Kedves (Devil Watch)
* Mari Arendse (Unfinished Business)
** Quoiattraction
=== My Ace Characters ===
* Angel Ashworth (CLASH)
* Sam Garrett (CLASH)
* Eve Grenville (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
=== My Aro Characters ===
* Romilly Bonney (The Show Must Go On)
* Della Alvalle (Nightfall)
=== My AroAce Characters ===
* Tyler Archer (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Ace Alvalle (Nightfall)
* Wira (Unfinished Business)
=== My Pan Characters ===
* Belle Starr (CLASH)
* Aalish McCasky (CLASH)
* Sophie Segal (CLASH)
* Ivory Tatton (Outside Perspective)
* Lucy Cookson (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Chan Smith (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Eden Abbey (The Show Must Go On)
* Dax Sheppard (Devil Watch)
* Owen Whalen (Nightfall)
=== My Omni Characters ===
* Jess Cobb (The Show Must Go On)
=== My Poly Characters ===
* Hal Witherspoon (The Show Must Go On)
* Zef Karim (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Demi Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
=== My Non-Binary Characters ===
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Owen Whalen (Nightfall)
* AI Stein (Neon Apocalypse)
=== My Agender Characters ===
* Terry Fan (The Show Must Go On)
* Ave Alvalle (Nightfall)
=== My Genderfluid Characters ===
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Bigender Characters ===
* Tilly Harrell (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Fluid Attraction Characters ===
* Rory Anker (The Show Must Go On)
** Resexual
=== My Gender Neutral Characters ===
* Robin Hartell (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* Billie Mills (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* Owen Whalen (Nightfall)
** Anarchogender
* Della Alvalle (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* Dax Shepaprd (Devil Watch)
** Cassgender
* Lake Manivong (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* Jewel Baumgartner (Outside Perspective)
** Vapogirl
* Robin Hartell (Outside Perspective)
** Xenrell
** Excitigender
* Lucy Cookson (The Show Must Go On)
** Helianfemme
* Charlie Coy-Young (Devil Watch)
** Silvagender
** Cottagegender
* Tomás Vincent (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* Eve Grenville (The Show Must Go On)
** Autifein
* Channary Soun (Nightfall)
** Autigender
=== My Intersex Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
** Cytochrome PORD
* Éva Bakó (The Show Must Go On)
** Müllerian Agenesis
* Lake Manivong (Devil Watch)
** 45,X/46,XY Mosaicism
* Ace Alvalle (Nightfall)
** 49,XXXXY Syndrome
* Jair Avenida Caballo (The Exchange)
** Hypergonadism
=== My Polyamorous Characters ===
* Quin Collingwood (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Rórdán O'Berne (Nightfall)
** Gamyflux
=== My Other M-Spec Characters ===
* Anarchy Garcia (CLASH)
** Yukiransexual
* Darko Novak (Outside Perspective)
** Solibroussexual
* Desiree Chan (The Show Must Go On)
** Multiaesthetic
* Davy Baumann (The Show Must Go On)
** Ambisexual
* Felix Adams (The Show Must Go On)
* Ġorġ Panzavecchia (The Show Must Go On)
* Rórdán O'Berne (Nightfall)
** Aliquissexual
* Víctor Valiente Zamorano (The Exchange)
** Disexual
* Cam Albuquerque (Neon Apocalypse)
=== My Other A-Spec Characters ===
* Belle Starr (CLASH)
** Autosexual
* Eve Grenville (The Show Must Go On)
** Alexmoromantic
* Tilly Harrell (The Show Must GO On)
** Divisexual
** Apresromantic
* Éva Bakó (The Show Must Go On)
** Apothi AroAce
* Quin Collingwood (The Show Must Go On)
** Omniasexual
* Dax Sheppard (Devil Watch)
** Cupiosensual
* Travis Graves (Nightfall)
** Atomosexual
* Ryan McNiven (Nightfall)
** Inataromantic
* Della Alvalle (Nightfall)
** Apothisexual
** Anattractional
* Ace Alvalle (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* Julia Aiza Villa (The Exchange)
** Aplatonic
* Finn Miller (Neon Apocalypse)
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* Robin Hartell (Outside Perspective)
** Torstellic
* Terry Fan (The Show Must Go On)
** Agenilian
* Quin Collingwood (The Show Must Go On)
** Pansyic
=== My Unspecified Queer Characters ===
* Aqua Jackson (CLASH)
* Book Janssen (The Show Must Go On)
* Tara Simen (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Monarhy Flitrabbow (Nightfall)
* Cedardrop (Nightfall)
05a5c47229d8b07c064fc876500cc9f7721978b0
7
6
2023-08-20T05:50:46Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* Phượng Hoàng (Outside Perspective)
* Jewel Baumgartner (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Eve Grenville (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Rena Ingram (The Show Must Go On)
* Gwen Dale (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Yamila Acuna Zegarra (Devil Watch)
* Channary Soun (Nightfall)
* Julia Aiza Villa (The Exchange)
=== My Gay Characters ===
* Josse Segal (CLASH)
* Basil Starr (CLASH)
* Zack Harper (CLASH)
* Ode Shadow (CLASH)
* Darko Novak (Outside Perspective)
* Cullen Bruce (Outside Perspective)
* Jorgino Etienam Gourriel (Outside Perspective)
* Nick O'Malley (The Show Must Go On)
* Caleb Tennyson (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Joel Coy-Young (Devil Watch)
* Caolán Neville (Nightfall)
* Jair Avenida Caballo (The Exchange)
* Rowan Jin (The Exchange)
* Víctor Valiente Zamorano (The Exchange)
* Simon Lefèvre (The Exchange)
* Daniel Gevorgyan (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Bi Characters ===
* Pierce Abraham (CLASH)
* Belle Starr (CLASH)
* Darko Novak (Outside Perspective)
* Pièrre Beaulieu (Outside Perspective)
* Roz Beridze (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Desiree Chan (The Show Must Go On)
* Don Holland (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Lake Manivong (Devil Watch)
* Quinn Ó Rinn (Nightfall)
* Travis Graves (Nightfall)
* Tomás Vincent (Nightfall)
* Bram Klein (The Exchange)
* Menna Elrashidy (The Exchange)
** Bicurious
* Jett Kim (Unfinished Business)
* Wira (Unfinished Business)
=== My Trans Characters ===
* Angel Ashworth (CLASH)
* Jewel Baumgartner (Outside Perspective)
* Robin Hartell (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Tilly Harrell (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Kira Varley (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Quin Collingwood (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Yamila Acuna Zegarra (Devil Watch)
* Cedardrop (Nightfall)
* Ryan McNiven (Nightfall)
* Aki Kazama (The Exchange)
* Menna Elrashidy (The Exchange)
* Simon Lefèvre (The Exchange)
* Mari Arendse (Unfinished Business)
* Wira (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Questioning Characters ===
* Ven Jackson (CLASH)
* Haruto Arima (Outside Perspective)
* Nightlight Benson (Outside Perspective)
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Shawn Wolfe (The Show Must Go On)
* Mel Chaplin (The Show Must Go On)
* Nate Parks (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
* Xavier Félix Santiago Magro Rios (The Show Must Go On)
* Veronika Kristiansen (The Show Must Go On)
* Christi McLain (The Show Must Go On)
* Jay Kedves (Devil Watch)
* Mari Arendse (Unfinished Business)
** Quoiattraction
=== My Ace Characters ===
* Angel Ashworth (CLASH)
* Sam Garrett (CLASH)
* Eve Grenville (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
=== My Aro Characters ===
* Romilly Bonney (The Show Must Go On)
* Della Alvalle (Nightfall)
=== My AroAce Characters ===
* Tyler Archer (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Ace Alvalle (Nightfall)
* Wira (Unfinished Business)
=== My Pan Characters ===
* Belle Starr (CLASH)
* Aalish McCasky (CLASH)
* Sophie Segal (CLASH)
* Ivory Tatton (Outside Perspective)
* Lucy Cookson (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Chan Smith (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Eden Abbey (The Show Must Go On)
* Dax Sheppard (Devil Watch)
* Owen Whalen (Nightfall)
=== My Omni Characters ===
* Jess Cobb (The Show Must Go On)
=== My Poly Characters ===
* Hal Witherspoon (The Show Must Go On)
* Zef Karim (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Demi Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
=== My Fluid Attraction Characters ===
* Rory Anker (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* Quin Collingwood (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Rórdán O'Berne (Nightfall)
** Gamyflux
=== My Non-Binary Characters ===
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Owen Whalen (Nightfall)
* AI Stein (Neon Apocalypse)
=== My Agender Characters ===
* Terry Fan (The Show Must Go On)
* Ave Alvalle (Nightfall)
=== My Genderfluid Characters ===
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Bigender Characters ===
* Tilly Harrell (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* Robin Hartell (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* Billie Mills (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* Owen Whalen (Nightfall)
** Anarchogender
* Della Alvalle (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* Dax Shepaprd (Devil Watch)
** Cassgender
* Lake Manivong (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* Jewel Baumgartner (Outside Perspective)
** Vapogirl
* Robin Hartell (Outside Perspective)
** Xenrell
** Excitigender
* Lucy Cookson (The Show Must Go On)
** Helianfemme
* Charlie Coy-Young (Devil Watch)
** Silvagender
** Cottagegender
* Tomás Vincent (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* Eve Grenville (The Show Must Go On)
** Autifein
* Channary Soun (Nightfall)
** Autigender
=== My Intersex Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
** Cytochrome PORD
* Éva Bakó (The Show Must Go On)
** Müllerian Agenesis
* Lake Manivong (Devil Watch)
** 45,X/46,XY Mosaicism
* Ace Alvalle (Nightfall)
** 49,XXXXY Syndrome
* Jair Avenida Caballo (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* Anarchy Garcia (CLASH)
** Yukiransexual
* Darko Novak (Outside Perspective)
** Solibroussexual
* Desiree Chan (The Show Must Go On)
** Multiaesthetic
* Davy Baumann (The Show Must Go On)
** Ambisexual
* Felix Adams (The Show Must Go On)
* Ġorġ Panzavecchia (The Show Must Go On)
* Rórdán O'Berne (Nightfall)
** Aliquissexual
* Víctor Valiente Zamorano (The Exchange)
** Disexual
* Cam Albuquerque (Neon Apocalypse)
=== My Other A-Spec Characters ===
* Belle Starr (CLASH)
** Autosexual
* Eve Grenville (The Show Must Go On)
** Alexmoromantic
* Tilly Harrell (The Show Must GO On)
** Divisexual
** Apresromantic
* Éva Bakó (The Show Must Go On)
** Apothi AroAce
* Quin Collingwood (The Show Must Go On)
** Omniasexual
* Dax Sheppard (Devil Watch)
** Cupiosensual
* Travis Graves (Nightfall)
** Atomosexual
* Ryan McNiven (Nightfall)
** Inataromantic
* Della Alvalle (Nightfall)
** Apothisexual
** Anattractional
* Ace Alvalle (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* Julia Aiza Villa (The Exchange)
** Aplatonic
* Finn Miller (Neon Apocalypse)
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* Robin Hartell (Outside Perspective)
** Torstellic
* Terry Fan (The Show Must Go On)
** Agenilian
* Quin Collingwood (The Show Must Go On)
** Pansyic
=== My Unspecified Queer Characters ===
* Aqua Jackson (CLASH)
* Book Janssen (The Show Must Go On)
* Tara Simen (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Monarhy Flitrabbow (Nightfall)
* Cedardrop (Nightfall)
4debe78b82df99bc806e1134e26c133958ac5b0e
8
7
2023-08-24T19:15:44Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* Phượng Hoàng (Outside Perspective)
* Jewel Baumgartner (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Eve Grenville (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Rena Ingram (The Show Must Go On)
* Gwen Dale (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Yamila Acuna Zegarra (Devil Watch)
* Channary Soun (Nightfall)
* Julia Aiza Villa (The Exchange)
=== My Gay Characters ===
* Josse Segal (CLASH)
* Basil Starr (CLASH)
* Zack Harper (CLASH)
* Ode Shadow (CLASH)
* Darko Novak (Outside Perspective)
* Cullen Bruce (Outside Perspective)
* Jorgino Etienam Gourriel (Outside Perspective)
* Nick O'Malley (The Show Must Go On)
* Caleb Tennyson (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Joel Coy-Young (Devil Watch)
* Caolán Neville (Nightfall)
* Jair Avenida Caballo (The Exchange)
* Rowan Jin (The Exchange)
* Víctor Valiente Zamorano (The Exchange)
* Simon Lefèvre (The Exchange)
* Daniel Gevorgyan (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Bi Characters ===
* Pierce Abraham (CLASH)
* Belle Starr (CLASH)
* Darko Novak (Outside Perspective)
* Pièrre Beaulieu (Outside Perspective)
* Roz Beridze (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Desiree Chan (The Show Must Go On)
* Don Holland (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Jesse Alexander (The Show Must Go On)
* Lake Manivong (Devil Watch)
* Quinn Ó Rinn (Nightfall)
* Travis Graves (Nightfall)
* Tomás Vincent (Nightfall)
* Bram Klein (The Exchange)
* Menna Elrashidy (The Exchange)
** Bicurious
* Jett Kim (Unfinished Business)
* Wira (Unfinished Business)
=== My Trans Characters ===
* Angel Ashworth (CLASH)
* Jewel Baumgartner (Outside Perspective)
* Robin Hartell (Outside Perspective)
* Iris Hoover-Henderson (The Show Must Go On)
* Tilly Harrell (The Show Must Go On)
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Kira Varley (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Quin Collingwood (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Yamila Acuna Zegarra (Devil Watch)
* Cedardrop (Nightfall)
* Ryan McNiven (Nightfall)
* Aki Kazama (The Exchange)
* Menna Elrashidy (The Exchange)
* Simon Lefèvre (The Exchange)
* Mari Arendse (Unfinished Business)
* Wira (Unfinished Business)
* Finn Miller (Neon Apocalypse)
=== My Questioning Characters ===
* Ven Jackson (CLASH)
* Haruto Arima (Outside Perspective)
* Nightlight Benson (Outside Perspective)
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Shawn Wolfe (The Show Must Go On)
* Mel Chaplin (The Show Must Go On)
* Nate Parks (The Show Must Go On)
* Conner Higgins (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
* Xavier Félix Santiago Magro Rios (The Show Must Go On)
* Veronika Kristiansen (The Show Must Go On)
* Christi McLain (The Show Must Go On)
* Jay Kedves (Devil Watch)
* Mari Arendse (Unfinished Business)
** Quoiattraction
=== My Ace Characters ===
* Angel Ashworth (CLASH)
* Sam Garrett (CLASH)
* Eve Grenville (The Show Must Go On)
* Kojo Owusu (The Show Must Go On)
=== My Aro Characters ===
* Romilly Bonney (The Show Must Go On)
* Della Alvalle (Nightfall)
=== My AroAce Characters ===
* Tyler Archer (The Show Must Go On)
* Charlie Coy-Young (Devil Watch)
* Ace Alvalle (Nightfall)
* Wira (Unfinished Business)
=== My Pan Characters ===
* Belle Starr (CLASH)
* Aalish McCasky (CLASH)
* Sophie Segal (CLASH)
* Ivory Tatton (Outside Perspective)
* Lucy Cookson (The Show Must Go On)
* Romilly Bonney (The Show Must Go On)
* Chan Smith (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Delilah Alexander (The Show Must Go On)
* Eden Abbey (The Show Must Go On)
* Dax Sheppard (Devil Watch)
* Owen Whalen (Nightfall)
=== My Omni Characters ===
* Jess Cobb (The Show Must Go On)
=== My Poly Characters ===
* Hal Witherspoon (The Show Must Go On)
* Zef Karim (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Demi Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
=== My Fluid Attraction Characters ===
* Rory Anker (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* Quin Collingwood (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Rórdán O'Berne (Nightfall)
** Gamyflux
=== My Non-Binary Characters ===
* Kalzetta Sultana (The Show Must Go On)
* Miley Sharma (The Show Must Go On)
* Owen Whalen (Nightfall)
* AI Stein (Neon Apocalypse)
=== My Agender Characters ===
* Terry Fan (The Show Must Go On)
* Ave Alvalle (Nightfall)
=== My Genderfluid Characters ===
* Silver Andrés Bien-Aimé (The Show Must Go On)
* Hal Witherspoon (The Show Must Go On)
* Aki Kazama (The Exchange)
=== My Bigender Characters ===
* Tilly Harrell (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* Robin Hartell (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* Billie Mills (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* Owen Whalen (Nightfall)
** Anarchogender
* Della Alvalle (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* Dax Shepaprd (Devil Watch)
** Cassgender
* Lake Manivong (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* Jewel Baumgartner (Outside Perspective)
** Vapogirl
* Robin Hartell (Outside Perspective)
** Xenrell
** Excitigender
* Lucy Cookson (The Show Must Go On)
** Helianfemme
* Charlie Coy-Young (Devil Watch)
** Silvagender
** Cottagegender
* Tomás Vincent (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* Eve Grenville (The Show Must Go On)
** Autifein
* Channary Soun (Nightfall)
** Autigender
=== My Intersex Characters ===
* Júlio César Carvalho Silva (The Show Must Go On)
** Cytochrome PORD
* Éva Bakó (The Show Must Go On)
** Müllerian Agenesis
* Lake Manivong (Devil Watch)
** 45,X/46,XY Mosaicism
* Ace Alvalle (Nightfall)
** 49,XXXXY Syndrome
* Jair Avenida Caballo (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* Anarchy Garcia (CLASH)
** Yukiransexual
* Darko Novak (Outside Perspective)
** Solibroussexual
* Desiree Chan (The Show Must Go On)
** Multiaesthetic
* Davy Baumann (The Show Must Go On)
** Ambisexual
* Felix Adams (The Show Must Go On)
* Ġorġ Panzavecchia (The Show Must Go On)
* Rórdán O'Berne (Nightfall)
** Aliquissexual
* Víctor Valiente Zamorano (The Exchange)
** Disexual
* Cam Albuquerque (Neon Apocalypse)
=== My Other A-Spec Characters ===
* Belle Starr (CLASH)
** Autosexual
* Eve Grenville (The Show Must Go On)
** Alexmoromantic
* Tilly Harrell (The Show Must GO On)
** Divisexual
** Apresromantic
* Éva Bakó (The Show Must Go On)
** Apothi AroAce
* Quin Collingwood (The Show Must Go On)
** Omniasexual
* Dax Sheppard (Devil Watch)
** Cupiosensual
* Travis Graves (Nightfall)
** Atomosexual
* Ryan McNiven (Nightfall)
** Inataromantic
* Della Alvalle (Nightfall)
** Apothisexual
** Anattractional
* Ace Alvalle (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* Julia Aiza Villa (The Exchange)
** Aplatonic
* Finn Miller (Neon Apocalypse)
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* Robin Hartell (Outside Perspective)
** Torstellic
* Terry Fan (The Show Must Go On)
** Agenilian
* Quin Collingwood (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* Aqua Jackson (CLASH)
* Book Janssen (The Show Must Go On)
* Tara Simen (The Show Must Go On)
* Bindy Abney (Devil Watch)
* Monarhy Flitrabbow (Nightfall)
* Cedardrop (Nightfall)
9f66ab49fbe13a8ea8688c25a8d2f70c303e42bb
File:Lesbian flag.png
6
3
9
2023-08-24T19:25:38Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Gay Man flag.png
6
4
10
2023-08-24T19:25:59Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Bi flag.png
6
5
11
2023-08-24T19:26:20Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Trans flag.png
6
6
12
2023-08-24T19:26:39Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Aroace flag.png
6
7
13
2023-08-24T19:26:58Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Pan flag.png
6
8
14
2023-08-24T19:27:29Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Non-Binary flag.png
6
9
15
2023-08-24T19:27:49Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Category:Lesbian Characters
14
10
16
2023-08-24T19:30:23Z
CheSnail
2
Created page with "[[File:Lesbian flag.png|frameless|center|200px]]"
wikitext
text/x-wiki
[[File:Lesbian flag.png|frameless|center|200px]]
4b440bbdf4034dc4b9b6e3493aba66f6844422e9
Category:Gay Man Characters
14
11
17
2023-08-24T19:35:59Z
CheSnail
2
Created page with "[[File:Gay Man flag.png|frameless|center|200px]]"
wikitext
text/x-wiki
[[File:Gay Man flag.png|frameless|center|200px]]
37f11b6fd53b984b61ddfbb9c8800576b34a475c
Category:Bi Characters
14
12
18
2023-08-24T19:49:15Z
CheSnail
2
Created page with "[[File:Bi flag.png|frameless|center|200px]]"
wikitext
text/x-wiki
[[File:Bi flag.png|frameless|center|200px]]
f79a6593a5921e0144487fcf30f112548636e972
Category:Trans Characters
14
13
19
2023-08-24T19:50:31Z
CheSnail
2
Created page with "[[File:Trans flag.png|frameless|center|200px]]"
wikitext
text/x-wiki
[[File:Trans flag.png|frameless|center|200px]]
d943ba779728e55e97662904026d33a9616e776a
Category:Aroace Characters
14
14
20
2023-08-24T19:51:30Z
CheSnail
2
Created page with "[[File:Aroace flag.png|frameless|center|200px]]"
wikitext
text/x-wiki
[[File:Aroace flag.png|frameless|center|200px]]
35e7fbfa0122dbdd1ada48c7ba76825e14d53c55
Category:Pan Characters
14
15
21
2023-08-24T19:52:17Z
CheSnail
2
Created page with "[[File:Pan flag.png|frameless|center|200px]]"
wikitext
text/x-wiki
[[File:Pan flag.png|frameless|center|200px]]
8fba2ee3eb447ca0a8af70a013731afbbdac9cd8
29
21
2023-08-24T19:59:22Z
CheSnail
2
wikitext
text/x-wiki
[[File:Pan flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
ac870858e8febfbb5d46e42e1a700039633df016
Category:Non-Binary Characters
14
16
22
2023-08-24T19:52:56Z
CheSnail
2
Created page with "[[File:Non-Binary flag.png|frameless|center|200px]]"
wikitext
text/x-wiki
[[File:Non-Binary flag.png|frameless|center|200px]]
5139dbab95349f4b47b2b48da461b4e4f772968c
30
22
2023-08-24T19:59:39Z
CheSnail
2
wikitext
text/x-wiki
[[File:Non-Binary flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
a53c4ebb7a7a49592a4f8c0be6ba16f8242f9708
Category:Characters by Identity
14
17
23
2023-08-24T19:53:51Z
CheSnail
2
Created page with "A category with subcategories sorted by identity."
wikitext
text/x-wiki
A category with subcategories sorted by identity.
688f5b2269f886ba061966072378596757930568
Category:Lesbian Characters
14
10
24
16
2023-08-24T19:54:46Z
CheSnail
2
wikitext
text/x-wiki
[[File:Lesbian flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
33cba102f9e6062407648be28e68f2dbc00385ab
Category:Gay Man Characters
14
11
25
17
2023-08-24T19:55:20Z
CheSnail
2
wikitext
text/x-wiki
[[File:Gay Man flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
8e93a2d500a53f51e3fafe3c8b9de12b3f67d530
Category:Bi Characters
14
12
26
18
2023-08-24T19:58:07Z
CheSnail
2
wikitext
text/x-wiki
[[File:Bi flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
d4bafbae87a656c625943f2c12e507e118c38141
Category:Trans Characters
14
13
27
19
2023-08-24T19:58:46Z
CheSnail
2
wikitext
text/x-wiki
[[File:Trans flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
30d7fbfd66248c33272d71f839f465c3dc6cd5ae
Category:Aroace Characters
14
14
28
20
2023-08-24T19:59:06Z
CheSnail
2
wikitext
text/x-wiki
[[File:Aroace flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
d3f61499a82930b80b1b78f10df27cc72c86a552
Main Page
0
1
31
1
2023-08-24T20:00:54Z
CheSnail
2
wikitext
text/x-wiki
__NOTOC__
== Welcome to {{SITENAME}}! ==
This is a resource for all canonically LGBTQ+ characters throughout fiction.
== Characters by Identity ==
[https://lgbtqcharacters.miraheze.org/wiki/Category:Characters_by_Identity]Character by Identity
<gallery>
Lesbian flag.png|[https://lgbtqcharacters.miraheze.org/wiki/Category:Lesbian_Characters]Lesbian Characters
Gay Man flag.png|[https://lgbtqcharacters.miraheze.org/wiki/Category:Gay_Characters]Gay Characters
Bi flag.png|[https://lgbtqcharacters.miraheze.org/wiki/Category:Bi_Characters]Bi Characters
Trans flag.png|[https://lgbtqcharacters.miraheze.org/wiki/Category:Trans_Characters]Trans Characters
Aroace flag.png|[https://lgbtqcharacters.miraheze.org/wiki/Category:Aroace_Characters]Aroace Characters
Pan flag.png|[https://lgbtqcharacters.miraheze.org/wiki/Category:Pan_Characters]Pan Characters
Non-Binary flag.png|[https://lgbtqcharacters.miraheze.org/wiki/Category:Non-Binary_Characters]Non-Binary Characters
</gallery>
== For Contributes ==
Look into these articles if you're looking to help out with the wiki:
* [[Rules]]
* [[Editing Guide]]
* [[Guide:Character]]
89d39bb623302d02be9df6eedb7782b59dfda05e
Rules
0
18
32
2023-08-24T20:43:06Z
CheSnail
2
Created page with "== Code of Conduct == # Keep personal bias out of the articles you're editing. Do not make any comments about your personal dislike of a character or your opinion about a certain identity. # Articles should be written in a standard wiki format. This means: ## Written in formal American English. ## Do not plagiarize. ## Bold text must only be used in the beginning of the article for the character's name. ## Italicized text must only be used for titles of books, shows, gam..."
wikitext
text/x-wiki
== Code of Conduct ==
# Keep personal bias out of the articles you're editing. Do not make any comments about your personal dislike of a character or your opinion about a certain identity.
# Articles should be written in a standard wiki format. This means:
## Written in formal American English.
## Do not plagiarize.
## Bold text must only be used in the beginning of the article for the character's name.
## Italicized text must only be used for titles of books, shows, games or other media.
## Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
## One space/line between paragraphs.
## Add links to any other characters included on the wiki used in the article.
## Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
## Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
## With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
## Do not address the reader.
## Do not add "WIP" or author's notes.
# Do not impersonate another user.
# No troll or satirical edits.
# Do not post false or misleading information.
# Do not post spam.
# Do not make queerphobic, ableist, racist, or sexist comments.
== Content Policy ==
=== Allowed Content ===
* Characters confirmed to be queer within the work itself.
* Characters confirmed to be queer by the creator outside of the work.
* Characters confirmed to be queer by the actor of the character outside of the work.
* Characters confirmed to be queer by a writer outside of the work.
** However, writers can have conflicting/different ideas about a character, if this is the case, include which writer confirmed what.
** All characters confirmed outside of the work itself must be categorized under "Word of Gay".
* Web characters, as long as they are fictional.
* You may add your original characters '''only''' if you have them/are planning to have them in a serious work, such as a book, webseries or comic.
=== Prohibited Content ===
* Headcanons, as these are up to interpretation.
* Real individuals, this includes fictionalized versions of real individuals, such as depictions of Elton John.
* Queercoded characters, as these characters are not meant to be explicitly queer.
[[Category:Help]] [[Category:Important]]
d4fd41ceb90664863ef9321e04d277bcd6f3f670
User:CheSnail
2
2
33
8
2023-08-25T01:03:12Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
9fda8514e596570edce90bb6dc1bb62ece35b231
195
33
2023-08-25T04:17:16Z
CheSnail
2
/* Favorite Media */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek:Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
79b546e27892589ece00fe9a18655fbdb166cddf
196
195
2023-08-25T04:17:31Z
CheSnail
2
/* Favorite Polyamorous Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
79047ff21451b87315250adf723646b852cbb42b
Editing Guide
0
19
34
2023-08-25T01:42:13Z
CheSnail
2
Created page with "== General Editing == Pages should follow standard wiki formatting, which means: # Written in formal American English. # Do not plagiarize. # Bold text must only be used in the beginning of the article/section of an article for the name of the term and any alternate spellings. # Italicized text must only be used for titles of books, shows, games or other media. # Text must be readable by text-to-speech programs, which means no typing quirks or special fonts. # One space/..."
wikitext
text/x-wiki
== General Editing ==
Pages should follow standard wiki formatting, which means:
# Written in formal American English.
# Do not plagiarize.
# Bold text must only be used in the beginning of the article/section of an article for the name of the term and any alternate spellings.
# Italicized text must only be used for titles of books, shows, games or other media.
# Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
# One space/line between paragraphs.
# Add links to any other terms used in the article.
# Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
# Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
# With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
# Do not address the reader.
# Do not add "WIP" or author's notes.
Additionally, personal bias should not be in these articles.
=== Titles ===
Some characters have only a first name and there may be more than one character with the same first and last name, this case, title the page "Character (Media)".
[[Category:Help]] [[Category:Important]]
1b9066556e2c06959c6d4a6140f24a9b58da6d94
Template:Infobox
10
20
36
35
2023-08-25T02:26:41Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
{{#invoke:Infobox|infobox}}<includeonly>{{template other|{{#ifeq:{{PAGENAME}}|Infobox||{{#ifeq:{{str left|{{SUBPAGENAME}}|7}}|Infobox|[[Category:Infobox templates|{{remove first word|{{SUBPAGENAME}}}}]]}}}}|}}</includeonly><noinclude>
{{documentation}}
<!-- Categories go in the /doc subpage, and interwikis go in Wikidata. -->
</noinclude>
817a9f5b6524eced06a57bd1d5fd7179f9369bf2
Module:Infobox
828
21
38
37
2023-08-25T02:26:41Z
CheSnail
2
1 revision imported
Scribunto
text/plain
local p = {}
local args = {}
local origArgs = {}
local root
local empty_row_categories = {}
local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]'
local has_rows = false
local lists = {
plainlist_t = {
patterns = {
'^plainlist$',
'%splainlist$',
'^plainlist%s',
'%splainlist%s'
},
found = false,
styles = 'Plainlist/styles.css'
},
hlist_t = {
patterns = {
'^hlist$',
'%shlist$',
'^hlist%s',
'%shlist%s'
},
found = false,
styles = 'Hlist/styles.css'
}
}
local function has_list_class(args_to_check)
for _, list in pairs(lists) do
if not list.found then
for _, arg in pairs(args_to_check) do
for _, pattern in ipairs(list.patterns) do
if mw.ustring.find(arg or '', pattern) then
list.found = true
break
end
end
if list.found then break end
end
end
end
end
local function fixChildBoxes(sval, tt)
local function notempty( s ) return s and s:match( '%S' ) end
if notempty(sval) then
local marker = '<span class=special_infobox_marker>'
local s = sval
-- start moving templatestyles and categories inside of table rows
local slast = ''
while slast ~= s do
slast = s
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*%]%])', '%2%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>%s*)(\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127)', '%2%1')
end
-- end moving templatestyles and categories inside of table rows
s = mw.ustring.gsub(s, '(<%s*[Tt][Rr])', marker .. '%1')
s = mw.ustring.gsub(s, '(</[Tt][Rr]%s*>)', '%1' .. marker)
if s:match(marker) then
s = mw.ustring.gsub(s, marker .. '%s*' .. marker, '')
s = mw.ustring.gsub(s, '([\r\n]|-[^\r\n]*[\r\n])%s*' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '%s*([\r\n]|-)', '%1')
s = mw.ustring.gsub(s, '(</[Cc][Aa][Pp][Tt][Ii][Oo][Nn]%s*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '(<%s*[Tt][Aa][Bb][Ll][Ee][^<>]*>%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '^(%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, '([\r\n]%{|[^\r\n]*[\r\n]%s*)' .. marker, '%1')
s = mw.ustring.gsub(s, marker .. '(%s*</[Tt][Aa][Bb][Ll][Ee]%s*>)', '%1')
s = mw.ustring.gsub(s, marker .. '(%s*\n|%})', '%1')
end
if s:match(marker) then
local subcells = mw.text.split(s, marker)
s = ''
for k = 1, #subcells do
if k == 1 then
s = s .. subcells[k] .. '</' .. tt .. '></tr>'
elseif k == #subcells then
local rowstyle = ' style="display:none"'
if notempty(subcells[k]) then rowstyle = '' end
s = s .. '<tr' .. rowstyle ..'><' .. tt .. ' colspan=2>\n' ..
subcells[k]
elseif notempty(subcells[k]) then
if (k % 2) == 0 then
s = s .. subcells[k]
else
s = s .. '<tr><' .. tt .. ' colspan=2>\n' ..
subcells[k] .. '</' .. tt .. '></tr>'
end
end
end
end
-- the next two lines add a newline at the end of lists for the PHP parser
-- [[Special:Diff/849054481]]
-- remove when [[:phab:T191516]] is fixed or OBE
s = mw.ustring.gsub(s, '([\r\n][%*#;:][^\r\n]*)$', '%1\n')
s = mw.ustring.gsub(s, '^([%*#;:][^\r\n]*)$', '%1\n')
s = mw.ustring.gsub(s, '^([%*#;:])', '\n%1')
s = mw.ustring.gsub(s, '^(%{%|)', '\n%1')
return s
else
return sval
end
end
-- Cleans empty tables
local function cleanInfobox()
root = tostring(root)
if has_rows == false then
root = mw.ustring.gsub(root, '<table[^<>]*>%s*</table>', '')
end
end
-- Returns the union of the values of two tables, as a sequence.
local function union(t1, t2)
local vals = {}
for k, v in pairs(t1) do
vals[v] = true
end
for k, v in pairs(t2) do
vals[v] = true
end
local ret = {}
for k, v in pairs(vals) do
table.insert(ret, k)
end
return ret
end
-- Returns a table containing the numbers of the arguments that exist
-- for the specified prefix. For example, if the prefix was 'data', and
-- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}.
local function getArgNums(prefix)
local nums = {}
for k, v in pairs(args) do
local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$')
if num then table.insert(nums, tonumber(num)) end
end
table.sort(nums)
return nums
end
-- Adds a row to the infobox, with either a header cell
-- or a label/data cell combination.
local function addRow(rowArgs)
if rowArgs.header and rowArgs.header ~= '_BLANK_' then
has_rows = true
has_list_class({ rowArgs.rowclass, rowArgs.class, args.headerclass })
root
:tag('tr')
:addClass(rowArgs.rowclass)
:cssText(rowArgs.rowstyle)
:tag('th')
:attr('colspan', '2')
:addClass('infobox-header')
:addClass(rowArgs.class)
:addClass(args.headerclass)
-- @deprecated next; target .infobox-<name> .infobox-header
:cssText(args.headerstyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(fixChildBoxes(rowArgs.header, 'th'))
if rowArgs.data then
root:wikitext(
'[[Category:Pages using infobox templates with ignored data cells]]'
)
end
elseif rowArgs.data and rowArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ rowArgs.rowclass, rowArgs.class })
local row = root:tag('tr')
row:addClass(rowArgs.rowclass)
row:cssText(rowArgs.rowstyle)
if rowArgs.label then
row
:tag('th')
:attr('scope', 'row')
:addClass('infobox-label')
-- @deprecated next; target .infobox-<name> .infobox-label
:cssText(args.labelstyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(rowArgs.label)
:done()
end
local dataCell = row:tag('td')
dataCell
:attr('colspan', not rowArgs.label and '2' or nil)
:addClass(not rowArgs.label and 'infobox-full-data' or 'infobox-data')
:addClass(rowArgs.class)
-- @deprecated next; target .infobox-<name> .infobox(-full)-data
:cssText(rowArgs.datastyle)
:cssText(rowArgs.rowcellstyle)
:wikitext(fixChildBoxes(rowArgs.data, 'td'))
else
table.insert(empty_row_categories, rowArgs.data or '')
end
end
local function renderTitle()
if not args.title then return end
has_rows = true
has_list_class({args.titleclass})
root
:tag('caption')
:addClass('infobox-title')
:addClass(args.titleclass)
-- @deprecated next; target .infobox-<name> .infobox-title
:cssText(args.titlestyle)
:wikitext(args.title)
end
local function renderAboveRow()
if not args.above then return end
has_rows = true
has_list_class({ args.aboveclass })
root
:tag('tr')
:tag('th')
:attr('colspan', '2')
:addClass('infobox-above')
:addClass(args.aboveclass)
-- @deprecated next; target .infobox-<name> .infobox-above
:cssText(args.abovestyle)
:wikitext(fixChildBoxes(args.above,'th'))
end
local function renderBelowRow()
if not args.below then return end
has_rows = true
has_list_class({ args.belowclass })
root
:tag('tr')
:tag('td')
:attr('colspan', '2')
:addClass('infobox-below')
:addClass(args.belowclass)
-- @deprecated next; target .infobox-<name> .infobox-below
:cssText(args.belowstyle)
:wikitext(fixChildBoxes(args.below,'td'))
end
local function addSubheaderRow(subheaderArgs)
if subheaderArgs.data and
subheaderArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ subheaderArgs.rowclass, subheaderArgs.class })
local row = root:tag('tr')
row:addClass(subheaderArgs.rowclass)
local dataCell = row:tag('td')
dataCell
:attr('colspan', '2')
:addClass('infobox-subheader')
:addClass(subheaderArgs.class)
:cssText(subheaderArgs.datastyle)
:cssText(subheaderArgs.rowcellstyle)
:wikitext(fixChildBoxes(subheaderArgs.data, 'td'))
else
table.insert(empty_row_categories, subheaderArgs.data or '')
end
end
local function renderSubheaders()
if args.subheader then
args.subheader1 = args.subheader
end
if args.subheaderrowclass then
args.subheaderrowclass1 = args.subheaderrowclass
end
local subheadernums = getArgNums('subheader')
for k, num in ipairs(subheadernums) do
addSubheaderRow({
data = args['subheader' .. tostring(num)],
-- @deprecated next; target .infobox-<name> .infobox-subheader
datastyle = args.subheaderstyle,
rowcellstyle = args['subheaderstyle' .. tostring(num)],
class = args.subheaderclass,
rowclass = args['subheaderrowclass' .. tostring(num)]
})
end
end
local function addImageRow(imageArgs)
if imageArgs.data and
imageArgs.data:gsub(category_in_empty_row_pattern, ''):match('^%S') then
has_rows = true
has_list_class({ imageArgs.rowclass, imageArgs.class })
local row = root:tag('tr')
row:addClass(imageArgs.rowclass)
local dataCell = row:tag('td')
dataCell
:attr('colspan', '2')
:addClass('infobox-image')
:addClass(imageArgs.class)
:cssText(imageArgs.datastyle)
:wikitext(fixChildBoxes(imageArgs.data, 'td'))
else
table.insert(empty_row_categories, imageArgs.data or '')
end
end
local function renderImages()
if args.image then
args.image1 = args.image
end
if args.caption then
args.caption1 = args.caption
end
local imagenums = getArgNums('image')
for k, num in ipairs(imagenums) do
local caption = args['caption' .. tostring(num)]
local data = mw.html.create():wikitext(args['image' .. tostring(num)])
if caption then
data
:tag('div')
:addClass('infobox-caption')
-- @deprecated next; target .infobox-<name> .infobox-caption
:cssText(args.captionstyle)
:wikitext(caption)
end
addImageRow({
data = tostring(data),
-- @deprecated next; target .infobox-<name> .infobox-image
datastyle = args.imagestyle,
class = args.imageclass,
rowclass = args['imagerowclass' .. tostring(num)]
})
end
end
-- When autoheaders are turned on, preprocesses the rows
local function preprocessRows()
if not args.autoheaders then return end
local rownums = union(getArgNums('header'), getArgNums('data'))
table.sort(rownums)
local lastheader
for k, num in ipairs(rownums) do
if args['header' .. tostring(num)] then
if lastheader then
args['header' .. tostring(lastheader)] = nil
end
lastheader = num
elseif args['data' .. tostring(num)] and
args['data' .. tostring(num)]:gsub(
category_in_empty_row_pattern, ''
):match('^%S') then
local data = args['data' .. tostring(num)]
if data:gsub(category_in_empty_row_pattern, ''):match('%S') then
lastheader = nil
end
end
end
if lastheader then
args['header' .. tostring(lastheader)] = nil
end
end
-- Gets the union of the header and data argument numbers,
-- and renders them all in order
local function renderRows()
local rownums = union(getArgNums('header'), getArgNums('data'))
table.sort(rownums)
for k, num in ipairs(rownums) do
addRow({
header = args['header' .. tostring(num)],
label = args['label' .. tostring(num)],
data = args['data' .. tostring(num)],
datastyle = args.datastyle,
class = args['class' .. tostring(num)],
rowclass = args['rowclass' .. tostring(num)],
-- @deprecated next; target .infobox-<name> rowclass
rowstyle = args['rowstyle' .. tostring(num)],
rowcellstyle = args['rowcellstyle' .. tostring(num)]
})
end
end
local function renderNavBar()
if not args.name then return end
has_rows = true
root
:tag('tr')
:tag('td')
:attr('colspan', '2')
:addClass('infobox-navbar')
:wikitext(require('Module:Navbar')._navbar{
args.name,
mini = 1,
})
end
local function renderItalicTitle()
local italicTitle = args['italic title'] and mw.ustring.lower(args['italic title'])
if italicTitle == '' or italicTitle == 'force' or italicTitle == 'yes' then
root:wikitext(require('Module:Italic title')._main({}))
end
end
-- Categories in otherwise empty rows are collected in empty_row_categories.
-- This function adds them to the module output. It is not affected by
-- args.decat because this module should not prevent module-external categories
-- from rendering.
local function renderEmptyRowCategories()
for _, s in ipairs(empty_row_categories) do
root:wikitext(s)
end
end
-- Render tracking categories. args.decat == turns off tracking categories.
local function renderTrackingCategories()
if args.decat == 'yes' then return end
if args.child == 'yes' then
if args.title then
root:wikitext(
'[[Category:Pages using embedded infobox templates with the title parameter]]'
)
end
elseif #(getArgNums('data')) == 0 and mw.title.getCurrentTitle().namespace == 0 then
root:wikitext('[[Category:Articles using infobox templates with no data rows]]')
end
end
--[=[
Loads the templatestyles for the infobox.
TODO: FINISH loading base templatestyles here rather than in
MediaWiki:Common.css. There are 4-5000 pages with 'raw' infobox tables.
See [[Mediawiki_talk:Common.css/to_do#Infobox]] and/or come help :).
When we do this we should clean up the inline CSS below too.
Will have to do some bizarre conversion category like with sidebar.
]=]
local function loadTemplateStyles()
local frame = mw.getCurrentFrame()
local hlist_templatestyles = ''
if lists.hlist_t.found then
hlist_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = lists.hlist_t.styles }
}
end
local plainlist_templatestyles = ''
if lists.plainlist_t.found then
plainlist_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = lists.plainlist_t.styles }
}
end
-- See function description
local base_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = 'Module:Infobox/styles.css' }
}
local templatestyles = ''
if args['templatestyles'] then
templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['templatestyles'] }
}
end
local child_templatestyles = ''
if args['child templatestyles'] then
child_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['child templatestyles'] }
}
end
local grandchild_templatestyles = ''
if args['grandchild templatestyles'] then
grandchild_templatestyles = frame:extensionTag{
name = 'templatestyles', args = { src = args['grandchild templatestyles'] }
}
end
return table.concat({
-- hlist -> plainlist -> base is best-effort to preserve old Common.css ordering.
-- this ordering is not a guarantee because the rows of interest invoking
-- each class may not be on a specific page
hlist_templatestyles,
plainlist_templatestyles,
base_templatestyles,
templatestyles,
child_templatestyles,
grandchild_templatestyles
})
end
-- common functions between the child and non child cases
local function structure_infobox_common()
renderSubheaders()
renderImages()
preprocessRows()
renderRows()
renderBelowRow()
renderNavBar()
renderItalicTitle()
renderEmptyRowCategories()
renderTrackingCategories()
cleanInfobox()
end
-- Specify the overall layout of the infobox, with special settings if the
-- infobox is used as a 'child' inside another infobox.
local function _infobox()
if args.child ~= 'yes' then
root = mw.html.create('table')
root
:addClass(args.subbox == 'yes' and 'infobox-subbox' or 'infobox')
:addClass(args.bodyclass)
-- @deprecated next; target .infobox-<name>
:cssText(args.bodystyle)
has_list_class({ args.bodyclass })
renderTitle()
renderAboveRow()
else
root = mw.html.create()
root
:wikitext(args.title)
end
structure_infobox_common()
return loadTemplateStyles() .. root
end
-- If the argument exists and isn't blank, add it to the argument table.
-- Blank arguments are treated as nil to match the behaviour of ParserFunctions.
local function preprocessSingleArg(argName)
if origArgs[argName] and origArgs[argName] ~= '' then
args[argName] = origArgs[argName]
end
end
-- Assign the parameters with the given prefixes to the args table, in order, in
-- batches of the step size specified. This is to prevent references etc. from
-- appearing in the wrong order. The prefixTable should be an array containing
-- tables, each of which has two possible fields, a "prefix" string and a
-- "depend" table. The function always parses parameters containing the "prefix"
-- string, but only parses parameters in the "depend" table if the prefix
-- parameter is present and non-blank.
local function preprocessArgs(prefixTable, step)
if type(prefixTable) ~= 'table' then
error("Non-table value detected for the prefix table", 2)
end
if type(step) ~= 'number' then
error("Invalid step value detected", 2)
end
-- Get arguments without a number suffix, and check for bad input.
for i,v in ipairs(prefixTable) do
if type(v) ~= 'table' or type(v.prefix) ~= "string" or
(v.depend and type(v.depend) ~= 'table') then
error('Invalid input detected to preprocessArgs prefix table', 2)
end
preprocessSingleArg(v.prefix)
-- Only parse the depend parameter if the prefix parameter is present
-- and not blank.
if args[v.prefix] and v.depend then
for j, dependValue in ipairs(v.depend) do
if type(dependValue) ~= 'string' then
error('Invalid "depend" parameter value detected in preprocessArgs')
end
preprocessSingleArg(dependValue)
end
end
end
-- Get arguments with number suffixes.
local a = 1 -- Counter variable.
local moreArgumentsExist = true
while moreArgumentsExist == true do
moreArgumentsExist = false
for i = a, a + step - 1 do
for j,v in ipairs(prefixTable) do
local prefixArgName = v.prefix .. tostring(i)
if origArgs[prefixArgName] then
-- Do another loop if any arguments are found, even blank ones.
moreArgumentsExist = true
preprocessSingleArg(prefixArgName)
end
-- Process the depend table if the prefix argument is present
-- and not blank, or we are processing "prefix1" and "prefix" is
-- present and not blank, and if the depend table is present.
if v.depend and (args[prefixArgName] or (i == 1 and args[v.prefix])) then
for j,dependValue in ipairs(v.depend) do
local dependArgName = dependValue .. tostring(i)
preprocessSingleArg(dependArgName)
end
end
end
end
a = a + step
end
end
-- Parse the data parameters in the same order that the old {{infobox}} did, so
-- that references etc. will display in the expected places. Parameters that
-- depend on another parameter are only processed if that parameter is present,
-- to avoid phantom references appearing in article reference lists.
local function parseDataParameters()
preprocessSingleArg('autoheaders')
preprocessSingleArg('child')
preprocessSingleArg('bodyclass')
preprocessSingleArg('subbox')
preprocessSingleArg('bodystyle')
preprocessSingleArg('title')
preprocessSingleArg('titleclass')
preprocessSingleArg('titlestyle')
preprocessSingleArg('above')
preprocessSingleArg('aboveclass')
preprocessSingleArg('abovestyle')
preprocessArgs({
{prefix = 'subheader', depend = {'subheaderstyle', 'subheaderrowclass'}}
}, 10)
preprocessSingleArg('subheaderstyle')
preprocessSingleArg('subheaderclass')
preprocessArgs({
{prefix = 'image', depend = {'caption', 'imagerowclass'}}
}, 10)
preprocessSingleArg('captionstyle')
preprocessSingleArg('imagestyle')
preprocessSingleArg('imageclass')
preprocessArgs({
{prefix = 'header'},
{prefix = 'data', depend = {'label'}},
{prefix = 'rowclass'},
{prefix = 'rowstyle'},
{prefix = 'rowcellstyle'},
{prefix = 'class'}
}, 50)
preprocessSingleArg('headerclass')
preprocessSingleArg('headerstyle')
preprocessSingleArg('labelstyle')
preprocessSingleArg('datastyle')
preprocessSingleArg('below')
preprocessSingleArg('belowclass')
preprocessSingleArg('belowstyle')
preprocessSingleArg('name')
-- different behaviour for italics if blank or absent
args['italic title'] = origArgs['italic title']
preprocessSingleArg('decat')
preprocessSingleArg('templatestyles')
preprocessSingleArg('child templatestyles')
preprocessSingleArg('grandchild templatestyles')
end
-- If called via #invoke, use the args passed into the invoking template.
-- Otherwise, for testing purposes, assume args are being passed directly in.
function p.infobox(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
parseDataParameters()
return _infobox()
end
-- For calling via #invoke within a template
function p.infoboxTemplate(frame)
origArgs = {}
for k,v in pairs(frame.args) do origArgs[k] = mw.text.trim(v) end
parseDataParameters()
return _infobox()
end
return p
0ddb7e5c8426d67cd589b710efb9912ddfb67fea
Module:Yesno
828
22
40
39
2023-08-25T02:26:42Z
CheSnail
2
1 revision imported
Scribunto
text/plain
-- Function allowing for consistent treatment of boolean-like wikitext input.
-- It works similarly to the template {{yesno}}.
return function (val, default)
-- If your wiki uses non-ascii characters for any of "yes", "no", etc., you
-- should replace "val:lower()" with "mw.ustring.lower(val)" in the
-- following line.
val = type(val) == 'string' and val:lower() or val
if val == nil then
return nil
elseif val == true
or val == 'yes'
or val == 'y'
or val == 'true'
or val == 't'
or val == 'on'
or tonumber(val) == 1
then
return true
elseif val == false
or val == 'no'
or val == 'n'
or val == 'false'
or val == 'f'
or val == 'off'
or tonumber(val) == 0
then
return false
else
return default
end
end
f767643e7d12126d020d88d662a3dd057817b9dc
Module:Arguments
828
23
42
41
2023-08-25T02:26:42Z
CheSnail
2
1 revision imported
Scribunto
text/plain
-- This module provides easy processing of arguments passed to Scribunto from
-- #invoke. It is intended for use by other Lua modules, and should not be
-- called from #invoke directly.
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local arguments = {}
-- Generate four different tidyVal functions, so that we don't have to check the
-- options every time we call it.
local function tidyValDefault(key, val)
if type(val) == 'string' then
val = val:match('^%s*(.-)%s*$')
if val == '' then
return nil
else
return val
end
else
return val
end
end
local function tidyValTrimOnly(key, val)
if type(val) == 'string' then
return val:match('^%s*(.-)%s*$')
else
return val
end
end
local function tidyValRemoveBlanksOnly(key, val)
if type(val) == 'string' then
if val:find('%S') then
return val
else
return nil
end
else
return val
end
end
local function tidyValNoChange(key, val)
return val
end
local function matchesTitle(given, title)
local tp = type( given )
return (tp == 'string' or tp == 'number') and mw.title.new( given ).prefixedText == title
end
local translate_mt = { __index = function(t, k) return k end }
function arguments.getArgs(frame, options)
checkType('getArgs', 1, frame, 'table', true)
checkType('getArgs', 2, options, 'table', true)
frame = frame or {}
options = options or {}
--[[
-- Set up argument translation.
--]]
options.translate = options.translate or {}
if getmetatable(options.translate) == nil then
setmetatable(options.translate, translate_mt)
end
if options.backtranslate == nil then
options.backtranslate = {}
for k,v in pairs(options.translate) do
options.backtranslate[v] = k
end
end
if options.backtranslate and getmetatable(options.backtranslate) == nil then
setmetatable(options.backtranslate, {
__index = function(t, k)
if options.translate[k] ~= k then
return nil
else
return k
end
end
})
end
--[[
-- Get the argument tables. If we were passed a valid frame object, get the
-- frame arguments (fargs) and the parent frame arguments (pargs), depending
-- on the options set and on the parent frame's availability. If we weren't
-- passed a valid frame object, we are being called from another Lua module
-- or from the debug console, so assume that we were passed a table of args
-- directly, and assign it to a new variable (luaArgs).
--]]
local fargs, pargs, luaArgs
if type(frame.args) == 'table' and type(frame.getParent) == 'function' then
if options.wrappers then
--[[
-- The wrappers option makes Module:Arguments look up arguments in
-- either the frame argument table or the parent argument table, but
-- not both. This means that users can use either the #invoke syntax
-- or a wrapper template without the loss of performance associated
-- with looking arguments up in both the frame and the parent frame.
-- Module:Arguments will look up arguments in the parent frame
-- if it finds the parent frame's title in options.wrapper;
-- otherwise it will look up arguments in the frame object passed
-- to getArgs.
--]]
local parent = frame:getParent()
if not parent then
fargs = frame.args
else
local title = parent:getTitle():gsub('/sandbox$', '')
local found = false
if matchesTitle(options.wrappers, title) then
found = true
elseif type(options.wrappers) == 'table' then
for _,v in pairs(options.wrappers) do
if matchesTitle(v, title) then
found = true
break
end
end
end
-- We test for false specifically here so that nil (the default) acts like true.
if found or options.frameOnly == false then
pargs = parent.args
end
if not found or options.parentOnly == false then
fargs = frame.args
end
end
else
-- options.wrapper isn't set, so check the other options.
if not options.parentOnly then
fargs = frame.args
end
if not options.frameOnly then
local parent = frame:getParent()
pargs = parent and parent.args or nil
end
end
if options.parentFirst then
fargs, pargs = pargs, fargs
end
else
luaArgs = frame
end
-- Set the order of precedence of the argument tables. If the variables are
-- nil, nothing will be added to the table, which is how we avoid clashes
-- between the frame/parent args and the Lua args.
local argTables = {fargs}
argTables[#argTables + 1] = pargs
argTables[#argTables + 1] = luaArgs
--[[
-- Generate the tidyVal function. If it has been specified by the user, we
-- use that; if not, we choose one of four functions depending on the
-- options chosen. This is so that we don't have to call the options table
-- every time the function is called.
--]]
local tidyVal = options.valueFunc
if tidyVal then
if type(tidyVal) ~= 'function' then
error(
"bad value assigned to option 'valueFunc'"
.. '(function expected, got '
.. type(tidyVal)
.. ')',
2
)
end
elseif options.trim ~= false then
if options.removeBlanks ~= false then
tidyVal = tidyValDefault
else
tidyVal = tidyValTrimOnly
end
else
if options.removeBlanks ~= false then
tidyVal = tidyValRemoveBlanksOnly
else
tidyVal = tidyValNoChange
end
end
--[[
-- Set up the args, metaArgs and nilArgs tables. args will be the one
-- accessed from functions, and metaArgs will hold the actual arguments. Nil
-- arguments are memoized in nilArgs, and the metatable connects all of them
-- together.
--]]
local args, metaArgs, nilArgs, metatable = {}, {}, {}, {}
setmetatable(args, metatable)
local function mergeArgs(tables)
--[[
-- Accepts multiple tables as input and merges their keys and values
-- into one table. If a value is already present it is not overwritten;
-- tables listed earlier have precedence. We are also memoizing nil
-- values, which can be overwritten if they are 's' (soft).
--]]
for _, t in ipairs(tables) do
for key, val in pairs(t) do
if metaArgs[key] == nil and nilArgs[key] ~= 'h' then
local tidiedVal = tidyVal(key, val)
if tidiedVal == nil then
nilArgs[key] = 's'
else
metaArgs[key] = tidiedVal
end
end
end
end
end
--[[
-- Define metatable behaviour. Arguments are memoized in the metaArgs table,
-- and are only fetched from the argument tables once. Fetching arguments
-- from the argument tables is the most resource-intensive step in this
-- module, so we try and avoid it where possible. For this reason, nil
-- arguments are also memoized, in the nilArgs table. Also, we keep a record
-- in the metatable of when pairs and ipairs have been called, so we do not
-- run pairs and ipairs on the argument tables more than once. We also do
-- not run ipairs on fargs and pargs if pairs has already been run, as all
-- the arguments will already have been copied over.
--]]
metatable.__index = function (t, key)
--[[
-- Fetches an argument when the args table is indexed. First we check
-- to see if the value is memoized, and if not we try and fetch it from
-- the argument tables. When we check memoization, we need to check
-- metaArgs before nilArgs, as both can be non-nil at the same time.
-- If the argument is not present in metaArgs, we also check whether
-- pairs has been run yet. If pairs has already been run, we return nil.
-- This is because all the arguments will have already been copied into
-- metaArgs by the mergeArgs function, meaning that any other arguments
-- must be nil.
--]]
if type(key) == 'string' then
key = options.translate[key]
end
local val = metaArgs[key]
if val ~= nil then
return val
elseif metatable.donePairs or nilArgs[key] then
return nil
end
for _, argTable in ipairs(argTables) do
local argTableVal = tidyVal(key, argTable[key])
if argTableVal ~= nil then
metaArgs[key] = argTableVal
return argTableVal
end
end
nilArgs[key] = 'h'
return nil
end
metatable.__newindex = function (t, key, val)
-- This function is called when a module tries to add a new value to the
-- args table, or tries to change an existing value.
if type(key) == 'string' then
key = options.translate[key]
end
if options.readOnly then
error(
'could not write to argument table key "'
.. tostring(key)
.. '"; the table is read-only',
2
)
elseif options.noOverwrite and args[key] ~= nil then
error(
'could not write to argument table key "'
.. tostring(key)
.. '"; overwriting existing arguments is not permitted',
2
)
elseif val == nil then
--[[
-- If the argument is to be overwritten with nil, we need to erase
-- the value in metaArgs, so that __index, __pairs and __ipairs do
-- not use a previous existing value, if present; and we also need
-- to memoize the nil in nilArgs, so that the value isn't looked
-- up in the argument tables if it is accessed again.
--]]
metaArgs[key] = nil
nilArgs[key] = 'h'
else
metaArgs[key] = val
end
end
local function translatenext(invariant)
local k, v = next(invariant.t, invariant.k)
invariant.k = k
if k == nil then
return nil
elseif type(k) ~= 'string' or not options.backtranslate then
return k, v
else
local backtranslate = options.backtranslate[k]
if backtranslate == nil then
-- Skip this one. This is a tail call, so this won't cause stack overflow
return translatenext(invariant)
else
return backtranslate, v
end
end
end
metatable.__pairs = function ()
-- Called when pairs is run on the args table.
if not metatable.donePairs then
mergeArgs(argTables)
metatable.donePairs = true
end
return translatenext, { t = metaArgs }
end
local function inext(t, i)
-- This uses our __index metamethod
local v = t[i + 1]
if v ~= nil then
return i + 1, v
end
end
metatable.__ipairs = function (t)
-- Called when ipairs is run on the args table.
return inext, t, 0
end
return args
end
return arguments
3134ecce8429b810d445e29eae115e2ae4c36c53
Template:Tl
10
24
44
43
2023-08-25T02:26:42Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
#REDIRECT [[Template:Template link]]
{{Redirect category shell|
{{R from move}}
}}
d6593bb3b4a866249f55d0f34b047a71fe1f1529
Template:Template link
10
25
46
45
2023-08-25T02:26:43Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
{{[[Template:{{{1}}}|{{{1}}}]]}}<noinclude>{{documentation}}
<!-- Categories go on the /doc subpage and interwikis go on Wikidata. -->
</noinclude>
eabbec62efe3044a98ebb3ce9e7d4d43c222351d
Module:Message box
828
26
48
47
2023-08-25T02:26:43Z
CheSnail
2
1 revision imported
Scribunto
text/plain
require('strict')
local getArgs
local yesno = require('Module:Yesno')
local lang = mw.language.getContentLanguage()
local CONFIG_MODULE = 'Module:Message box/configuration'
local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'}
--------------------------------------------------------------------------------
-- Helper functions
--------------------------------------------------------------------------------
local function getTitleObject(...)
-- Get the title object, passing the function through pcall
-- in case we are over the expensive function count limit.
local success, title = pcall(mw.title.new, ...)
if success then
return title
end
end
local function union(t1, t2)
-- Returns the union of two arrays.
local vals = {}
for i, v in ipairs(t1) do
vals[v] = true
end
for i, v in ipairs(t2) do
vals[v] = true
end
local ret = {}
for k in pairs(vals) do
table.insert(ret, k)
end
table.sort(ret)
return ret
end
local function getArgNums(args, prefix)
local nums = {}
for k, v in pairs(args) do
local num = mw.ustring.match(tostring(k), '^' .. prefix .. '([1-9]%d*)$')
if num then
table.insert(nums, tonumber(num))
end
end
table.sort(nums)
return nums
end
--------------------------------------------------------------------------------
-- Box class definition
--------------------------------------------------------------------------------
local MessageBox = {}
MessageBox.__index = MessageBox
function MessageBox.new(boxType, args, cfg)
args = args or {}
local obj = {}
-- Set the title object and the namespace.
obj.title = getTitleObject(args.page) or mw.title.getCurrentTitle()
-- Set the config for our box type.
obj.cfg = cfg[boxType]
if not obj.cfg then
local ns = obj.title.namespace
-- boxType is "mbox" or invalid input
if args.demospace and args.demospace ~= '' then
-- implement demospace parameter of mbox
local demospace = string.lower(args.demospace)
if DEMOSPACES[demospace] then
-- use template from DEMOSPACES
obj.cfg = cfg[DEMOSPACES[demospace]]
elseif string.find( demospace, 'talk' ) then
-- demo as a talk page
obj.cfg = cfg.tmbox
else
-- default to ombox
obj.cfg = cfg.ombox
end
elseif ns == 0 then
obj.cfg = cfg.ambox -- main namespace
elseif ns == 6 then
obj.cfg = cfg.imbox -- file namespace
elseif ns == 14 then
obj.cfg = cfg.cmbox -- category namespace
else
local nsTable = mw.site.namespaces[ns]
if nsTable and nsTable.isTalk then
obj.cfg = cfg.tmbox -- any talk namespace
else
obj.cfg = cfg.ombox -- other namespaces or invalid input
end
end
end
-- Set the arguments, and remove all blank arguments except for the ones
-- listed in cfg.allowBlankParams.
do
local newArgs = {}
for k, v in pairs(args) do
if v ~= '' then
newArgs[k] = v
end
end
for i, param in ipairs(obj.cfg.allowBlankParams or {}) do
newArgs[param] = args[param]
end
obj.args = newArgs
end
-- Define internal data structure.
obj.categories = {}
obj.classes = {}
-- For lazy loading of [[Module:Category handler]].
obj.hasCategories = false
return setmetatable(obj, MessageBox)
end
function MessageBox:addCat(ns, cat, sort)
if not cat then
return nil
end
if sort then
cat = string.format('[[Category:%s|%s]]', cat, sort)
else
cat = string.format('[[Category:%s]]', cat)
end
self.hasCategories = true
self.categories[ns] = self.categories[ns] or {}
table.insert(self.categories[ns], cat)
end
function MessageBox:addClass(class)
if not class then
return nil
end
table.insert(self.classes, class)
end
function MessageBox:setParameters()
local args = self.args
local cfg = self.cfg
-- Get type data.
self.type = args.type
local typeData = cfg.types[self.type]
self.invalidTypeError = cfg.showInvalidTypeError
and self.type
and not typeData
typeData = typeData or cfg.types[cfg.default]
self.typeClass = typeData.class
self.typeImage = typeData.image
-- Find if the box has been wrongly substituted.
self.isSubstituted = cfg.substCheck and args.subst == 'SUBST'
-- Find whether we are using a small message box.
self.isSmall = cfg.allowSmall and (
cfg.smallParam and args.small == cfg.smallParam
or not cfg.smallParam and yesno(args.small)
)
-- Add attributes, classes and styles.
self.id = args.id
self.name = args.name
if self.name then
self:addClass('box-' .. string.gsub(self.name,' ','_'))
end
if yesno(args.plainlinks) ~= false then
self:addClass('plainlinks')
end
for _, class in ipairs(cfg.classes or {}) do
self:addClass(class)
end
if self.isSmall then
self:addClass(cfg.smallClass or 'mbox-small')
end
self:addClass(self.typeClass)
self:addClass(args.class)
self.style = args.style
self.attrs = args.attrs
-- Set text style.
self.textstyle = args.textstyle
-- Find if we are on the template page or not. This functionality is only
-- used if useCollapsibleTextFields is set, or if both cfg.templateCategory
-- and cfg.templateCategoryRequireName are set.
self.useCollapsibleTextFields = cfg.useCollapsibleTextFields
if self.useCollapsibleTextFields
or cfg.templateCategory
and cfg.templateCategoryRequireName
then
if self.name then
local templateName = mw.ustring.match(
self.name,
'^[tT][eE][mM][pP][lL][aA][tT][eE][%s_]*:[%s_]*(.*)$'
) or self.name
templateName = 'Template:' .. templateName
self.templateTitle = getTitleObject(templateName)
end
self.isTemplatePage = self.templateTitle
and mw.title.equals(self.title, self.templateTitle)
end
-- Process data for collapsible text fields. At the moment these are only
-- used in {{ambox}}.
if self.useCollapsibleTextFields then
-- Get the self.issue value.
if self.isSmall and args.smalltext then
self.issue = args.smalltext
else
local sect
if args.sect == '' then
sect = 'This ' .. (cfg.sectionDefault or 'page')
elseif type(args.sect) == 'string' then
sect = 'This ' .. args.sect
end
local issue = args.issue
issue = type(issue) == 'string' and issue ~= '' and issue or nil
local text = args.text
text = type(text) == 'string' and text or nil
local issues = {}
table.insert(issues, sect)
table.insert(issues, issue)
table.insert(issues, text)
self.issue = table.concat(issues, ' ')
end
-- Get the self.talk value.
local talk = args.talk
-- Show talk links on the template page or template subpages if the talk
-- parameter is blank.
if talk == ''
and self.templateTitle
and (
mw.title.equals(self.templateTitle, self.title)
or self.title:isSubpageOf(self.templateTitle)
)
then
talk = '#'
elseif talk == '' then
talk = nil
end
if talk then
-- If the talk value is a talk page, make a link to that page. Else
-- assume that it's a section heading, and make a link to the talk
-- page of the current page with that section heading.
local talkTitle = getTitleObject(talk)
local talkArgIsTalkPage = true
if not talkTitle or not talkTitle.isTalkPage then
talkArgIsTalkPage = false
talkTitle = getTitleObject(
self.title.text,
mw.site.namespaces[self.title.namespace].talk.id
)
end
if talkTitle and talkTitle.exists then
local talkText
if self.isSmall then
local talkLink = talkArgIsTalkPage and talk or (talkTitle.prefixedText .. '#' .. talk)
talkText = string.format('([[%s|talk]])', talkLink)
else
talkText = 'Relevant discussion may be found on'
if talkArgIsTalkPage then
talkText = string.format(
'%s [[%s|%s]].',
talkText,
talk,
talkTitle.prefixedText
)
else
talkText = string.format(
'%s the [[%s#%s|talk page]].',
talkText,
talkTitle.prefixedText,
talk
)
end
end
self.talk = talkText
end
end
-- Get other values.
self.fix = args.fix ~= '' and args.fix or nil
local date
if args.date and args.date ~= '' then
date = args.date
elseif args.date == '' and self.isTemplatePage then
date = lang:formatDate('F Y')
end
if date then
self.date = string.format(" <span class='date-container'><i>(<span class='date'>%s</span>)</i></span>", date)
end
self.info = args.info
if yesno(args.removalnotice) then
self.removalNotice = cfg.removalNotice
end
end
-- Set the non-collapsible text field. At the moment this is used by all box
-- types other than ambox, and also by ambox when small=yes.
if self.isSmall then
self.text = args.smalltext or args.text
else
self.text = args.text
end
-- Set the below row.
self.below = cfg.below and args.below
-- General image settings.
self.imageCellDiv = not self.isSmall and cfg.imageCellDiv
self.imageEmptyCell = cfg.imageEmptyCell
-- Left image settings.
local imageLeft = self.isSmall and args.smallimage or args.image
if cfg.imageCheckBlank and imageLeft ~= 'blank' and imageLeft ~= 'none'
or not cfg.imageCheckBlank and imageLeft ~= 'none'
then
self.imageLeft = imageLeft
if not imageLeft then
local imageSize = self.isSmall
and (cfg.imageSmallSize or '30x30px')
or '40x40px'
self.imageLeft = string.format('[[File:%s|%s|link=|alt=]]', self.typeImage
or 'Imbox notice.png', imageSize)
end
end
-- Right image settings.
local imageRight = self.isSmall and args.smallimageright or args.imageright
if not (cfg.imageRightNone and imageRight == 'none') then
self.imageRight = imageRight
end
-- set templatestyles
self.base_templatestyles = cfg.templatestyles
self.templatestyles = args.templatestyles
end
function MessageBox:setMainspaceCategories()
local args = self.args
local cfg = self.cfg
if not cfg.allowMainspaceCategories then
return nil
end
local nums = {}
for _, prefix in ipairs{'cat', 'category', 'all'} do
args[prefix .. '1'] = args[prefix]
nums = union(nums, getArgNums(args, prefix))
end
-- The following is roughly equivalent to the old {{Ambox/category}}.
local date = args.date
date = type(date) == 'string' and date
local preposition = 'from'
for _, num in ipairs(nums) do
local mainCat = args['cat' .. tostring(num)]
or args['category' .. tostring(num)]
local allCat = args['all' .. tostring(num)]
mainCat = type(mainCat) == 'string' and mainCat
allCat = type(allCat) == 'string' and allCat
if mainCat and date and date ~= '' then
local catTitle = string.format('%s %s %s', mainCat, preposition, date)
self:addCat(0, catTitle)
catTitle = getTitleObject('Category:' .. catTitle)
if not catTitle or not catTitle.exists then
self:addCat(0, 'Articles with invalid date parameter in template')
end
elseif mainCat and (not date or date == '') then
self:addCat(0, mainCat)
end
if allCat then
self:addCat(0, allCat)
end
end
end
function MessageBox:setTemplateCategories()
local args = self.args
local cfg = self.cfg
-- Add template categories.
if cfg.templateCategory then
if cfg.templateCategoryRequireName then
if self.isTemplatePage then
self:addCat(10, cfg.templateCategory)
end
elseif not self.title.isSubpage then
self:addCat(10, cfg.templateCategory)
end
end
-- Add template error categories.
if cfg.templateErrorCategory then
local templateErrorCategory = cfg.templateErrorCategory
local templateCat, templateSort
if not self.name and not self.title.isSubpage then
templateCat = templateErrorCategory
elseif self.isTemplatePage then
local paramsToCheck = cfg.templateErrorParamsToCheck or {}
local count = 0
for i, param in ipairs(paramsToCheck) do
if not args[param] then
count = count + 1
end
end
if count > 0 then
templateCat = templateErrorCategory
templateSort = tostring(count)
end
if self.categoryNums and #self.categoryNums > 0 then
templateCat = templateErrorCategory
templateSort = 'C'
end
end
self:addCat(10, templateCat, templateSort)
end
end
function MessageBox:setAllNamespaceCategories()
-- Set categories for all namespaces.
if self.invalidTypeError then
local allSort = (self.title.namespace == 0 and 'Main:' or '') .. self.title.prefixedText
self:addCat('all', 'Wikipedia message box parameter needs fixing', allSort)
end
if self.isSubstituted then
self:addCat('all', 'Pages with incorrectly substituted templates')
end
end
function MessageBox:setCategories()
if self.title.namespace == 0 then
self:setMainspaceCategories()
elseif self.title.namespace == 10 then
self:setTemplateCategories()
end
self:setAllNamespaceCategories()
end
function MessageBox:renderCategories()
if not self.hasCategories then
-- No categories added, no need to pass them to Category handler so,
-- if it was invoked, it would return the empty string.
-- So we shortcut and return the empty string.
return ""
end
-- Convert category tables to strings and pass them through
-- [[Module:Category handler]].
return require('Module:Category handler')._main{
main = table.concat(self.categories[0] or {}),
template = table.concat(self.categories[10] or {}),
all = table.concat(self.categories.all or {}),
nocat = self.args.nocat,
page = self.args.page
}
end
function MessageBox:export()
local root = mw.html.create()
-- Add the subst check error.
if self.isSubstituted and self.name then
root:tag('b')
:addClass('error')
:wikitext(string.format(
'Template <code>%s[[Template:%s|%s]]%s</code> has been incorrectly substituted.',
mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}')
))
end
local frame = mw.getCurrentFrame()
root:wikitext(frame:extensionTag{
name = 'templatestyles',
args = { src = self.base_templatestyles },
})
-- Add support for a single custom templatestyles sheet. Undocumented as
-- need should be limited and many templates using mbox are substed; we
-- don't want to spread templatestyles sheets around to arbitrary places
if self.templatestyles then
root:wikitext(frame:extensionTag{
name = 'templatestyles',
args = { src = self.templatestyles },
})
end
-- Create the box table.
local boxTable = root:tag('table')
boxTable:attr('id', self.id or nil)
for i, class in ipairs(self.classes or {}) do
boxTable:addClass(class or nil)
end
boxTable
:cssText(self.style or nil)
:attr('role', 'presentation')
if self.attrs then
boxTable:attr(self.attrs)
end
-- Add the left-hand image.
local row = boxTable:tag('tr')
if self.imageLeft then
local imageLeftCell = row:tag('td'):addClass('mbox-image')
if self.imageCellDiv then
-- If we are using a div, redefine imageLeftCell so that the image
-- is inside it. Divs use style="width: 52px;", which limits the
-- image width to 52px. If any images in a div are wider than that,
-- they may overlap with the text or cause other display problems.
imageLeftCell = imageLeftCell:tag('div'):addClass('mbox-image-div')
end
imageLeftCell:wikitext(self.imageLeft or nil)
elseif self.imageEmptyCell then
-- Some message boxes define an empty cell if no image is specified, and
-- some don't. The old template code in templates where empty cells are
-- specified gives the following hint: "No image. Cell with some width
-- or padding necessary for text cell to have 100% width."
row:tag('td')
:addClass('mbox-empty-cell')
end
-- Add the text.
local textCell = row:tag('td'):addClass('mbox-text')
if self.useCollapsibleTextFields then
-- The message box uses advanced text parameters that allow things to be
-- collapsible. At the moment, only ambox uses this.
textCell:cssText(self.textstyle or nil)
local textCellDiv = textCell:tag('div')
textCellDiv
:addClass('mbox-text-span')
:wikitext(self.issue or nil)
if (self.talk or self.fix) then
textCellDiv:tag('span')
:addClass('hide-when-compact')
:wikitext(self.talk and (' ' .. self.talk) or nil)
:wikitext(self.fix and (' ' .. self.fix) or nil)
end
textCellDiv:wikitext(self.date and (' ' .. self.date) or nil)
if self.info and not self.isSmall then
textCellDiv
:tag('span')
:addClass('hide-when-compact')
:wikitext(self.info and (' ' .. self.info) or nil)
end
if self.removalNotice then
textCellDiv:tag('span')
:addClass('hide-when-compact')
:tag('i')
:wikitext(string.format(" (%s)", self.removalNotice))
end
else
-- Default text formatting - anything goes.
textCell
:cssText(self.textstyle or nil)
:wikitext(self.text or nil)
end
-- Add the right-hand image.
if self.imageRight then
local imageRightCell = row:tag('td'):addClass('mbox-imageright')
if self.imageCellDiv then
-- If we are using a div, redefine imageRightCell so that the image
-- is inside it.
imageRightCell = imageRightCell:tag('div'):addClass('mbox-image-div')
end
imageRightCell
:wikitext(self.imageRight or nil)
end
-- Add the below row.
if self.below then
boxTable:tag('tr')
:tag('td')
:attr('colspan', self.imageRight and '3' or '2')
:addClass('mbox-text')
:cssText(self.textstyle or nil)
:wikitext(self.below or nil)
end
-- Add error message for invalid type parameters.
if self.invalidTypeError then
root:tag('div')
:addClass('mbox-invalid-type')
:wikitext(string.format(
'This message box is using an invalid "type=%s" parameter and needs fixing.',
self.type or ''
))
end
-- Add categories.
root:wikitext(self:renderCategories() or nil)
return tostring(root)
end
--------------------------------------------------------------------------------
-- Exports
--------------------------------------------------------------------------------
local p, mt = {}, {}
function p._exportClasses()
-- For testing.
return {
MessageBox = MessageBox
}
end
function p.main(boxType, args, cfgTables)
local box = MessageBox.new(boxType, args, cfgTables or mw.loadData(CONFIG_MODULE))
box:setParameters()
box:setCategories()
return box:export()
end
function mt.__index(t, k)
return function (frame)
if not getArgs then
getArgs = require('Module:Arguments').getArgs
end
return t.main(k, getArgs(frame, {trim = false, removeBlanks = false}))
end
end
return setmetatable(p, mt)
bdb0ecc9f26f26b9c0ce12a066a183ac9d4f0705
Module:Message box/configuration
828
27
50
49
2023-08-25T02:26:44Z
CheSnail
2
1 revision imported
Scribunto
text/plain
--------------------------------------------------------------------------------
-- Message box configuration --
-- --
-- This module contains configuration data for [[Module:Message box]]. --
--------------------------------------------------------------------------------
return {
ambox = {
types = {
speedy = {
class = 'ambox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'ambox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'ambox-content',
image = 'Ambox important.svg'
},
style = {
class = 'ambox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'ambox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'ambox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'ambox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
allowBlankParams = {'talk', 'sect', 'date', 'issue', 'fix', 'subst', 'hidden'},
allowSmall = true,
smallParam = 'left',
smallClass = 'mbox-small-left',
substCheck = true,
classes = {'metadata', 'ambox'},
imageEmptyCell = true,
imageCheckBlank = true,
imageSmallSize = '20x20px',
imageCellDiv = true,
useCollapsibleTextFields = true,
imageRightNone = true,
sectionDefault = 'article',
allowMainspaceCategories = true,
templateCategory = 'Article message templates',
templateCategoryRequireName = true,
templateErrorCategory = 'Article message templates with missing parameters',
templateErrorParamsToCheck = {'issue', 'fix', 'subst'},
removalNotice = '<small>[[Help:Maintenance template removal|Learn how and when to remove this template message]]</small>',
templatestyles = 'Module:Message box/ambox.css'
},
cmbox = {
types = {
speedy = {
class = 'cmbox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'cmbox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'cmbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'cmbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'cmbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'cmbox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'cmbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'cmbox'},
imageEmptyCell = true,
templatestyles = 'Module:Message box/cmbox.css'
},
fmbox = {
types = {
warning = {
class = 'fmbox-warning',
image = 'Ambox warning pn.svg'
},
editnotice = {
class = 'fmbox-editnotice',
image = 'Information icon4.svg'
},
system = {
class = 'fmbox-system',
image = 'Information icon4.svg'
}
},
default = 'system',
showInvalidTypeError = true,
classes = {'fmbox'},
imageEmptyCell = false,
imageRightNone = false,
templatestyles = 'Module:Message box/fmbox.css'
},
imbox = {
types = {
speedy = {
class = 'imbox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'imbox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'imbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'imbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'imbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'imbox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
license = {
class = 'imbox-license licensetpl',
image = 'Imbox license.png' -- @todo We need an SVG version of this
},
featured = {
class = 'imbox-featured',
image = 'Cscr-featured.svg'
},
notice = {
class = 'imbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'imbox'},
imageEmptyCell = true,
below = true,
templateCategory = 'File message boxes',
templatestyles = 'Module:Message box/imbox.css'
},
ombox = {
types = {
speedy = {
class = 'ombox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'ombox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'ombox-content',
image = 'Ambox important.svg'
},
style = {
class = 'ombox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'ombox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'ombox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'ombox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'ombox'},
allowSmall = true,
imageEmptyCell = true,
imageRightNone = true,
templatestyles = 'Module:Message box/ombox.css'
},
tmbox = {
types = {
speedy = {
class = 'tmbox-speedy',
image = 'Ambox warning pn.svg'
},
delete = {
class = 'tmbox-delete',
image = 'Ambox warning pn.svg'
},
content = {
class = 'tmbox-content',
image = 'Ambox important.svg'
},
style = {
class = 'tmbox-style',
image = 'Edit-clear.svg'
},
move = {
class = 'tmbox-move',
image = 'Merge-split-transwiki default.svg'
},
protection = {
class = 'tmbox-protection',
image = 'Semi-protection-shackle-keyhole.svg'
},
notice = {
class = 'tmbox-notice',
image = 'Information icon4.svg'
}
},
default = 'notice',
showInvalidTypeError = true,
classes = {'tmbox'},
allowSmall = true,
imageRightNone = true,
imageEmptyCell = true,
templateCategory = 'Talk message boxes',
templatestyles = 'Module:Message box/tmbox.css'
}
}
b6f0151037e6867b577c8cca32ff297e48697a10
Template:Yesno
10
28
52
51
2023-08-25T02:26:44Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
{{<includeonly>safesubst:</includeonly>#switch: {{<includeonly>safesubst:</includeonly>lc: {{{1|¬}}} }}
|no
|n
|f
|false
|off
|0 = {{{no|<!-- null -->}}}
| = {{{blank|{{{no|<!-- null -->}}}}}}
|¬ = {{{¬|}}}
|yes
|y
|t
|true
|on
|1 = {{{yes|yes}}}
|#default = {{{def|{{{yes|yes}}}}}}
}}<noinclude>
{{Documentation}}
</noinclude>
629c2937bc5cf7cfe13cd2a598582af832782399
Template:Main other
10
29
54
53
2023-08-25T02:26:45Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
{{#switch:
<!--If no or empty "demospace" parameter then detect namespace-->
{{#if:{{{demospace|}}}
| {{lc: {{{demospace}}} }} <!--Use lower case "demospace"-->
| {{#ifeq:{{NAMESPACE}}|{{ns:0}}
| main
| other
}}
}}
| main = {{{1|}}}
| other
| #default = {{{2|}}}
}}<noinclude>
{{documentation}}
<!-- Add categories to the /doc subpage; interwikis go to Wikidata, thank you! -->
</noinclude>
86ad907ffeea3cc545159e00cd1f2d6433946450
Template:Nobold
10
30
56
55
2023-08-25T02:26:45Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
<templatestyles src="Nobold/styles.css"/><span class="nobold">{{{1}}}</span><noinclude>
{{documentation}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS -->
</noinclude>
9c92b5951772bb26ca0fbe9256418b65e47700dd
Template:Nobold/styles.css
10
31
58
57
2023-08-25T02:26:46Z
CheSnail
2
1 revision imported
text
text/plain
/* {{pp-template}} */
/* Styling for Template:Nobold */
.nobold {
font-weight: normal;
}
83e5f0adacf8c7984251f1fd9d11ed82ebaadf03
Module:Check for unknown parameters
828
32
60
59
2023-08-25T02:26:47Z
CheSnail
2
1 revision imported
Scribunto
text/plain
-- This module may be used to compare the arguments passed to the parent
-- with a list of arguments, returning a specified result if an argument is
-- not on the list
local p = {}
local function trim(s)
return s:match('^%s*(.-)%s*$')
end
local function isnotempty(s)
return s and s:match('%S')
end
local function clean(text)
-- Return text cleaned for display and truncated if too long.
-- Strip markers are replaced with dummy text representing the original wikitext.
local pos, truncated
local function truncate(text)
if truncated then
return ''
end
if mw.ustring.len(text) > 25 then
truncated = true
text = mw.ustring.sub(text, 1, 25) .. '...'
end
return mw.text.nowiki(text)
end
local parts = {}
for before, tag, remainder in text:gmatch('([^\127]*)\127[^\127]*%-(%l+)%-[^\127]*\127()') do
pos = remainder
table.insert(parts, truncate(before) .. '<' .. tag .. '>...</' .. tag .. '>')
end
table.insert(parts, truncate(text:sub(pos or 1)))
return table.concat(parts)
end
function p._check(args, pargs)
if type(args) ~= "table" or type(pargs) ~= "table" then
-- TODO: error handling
return
end
-- create the list of known args, regular expressions, and the return string
local knownargs = {}
local regexps = {}
for k, v in pairs(args) do
if type(k) == 'number' then
v = trim(v)
knownargs[v] = 1
elseif k:find('^regexp[1-9][0-9]*$') then
table.insert(regexps, '^' .. v .. '$')
end
end
-- loop over the parent args, and make sure they are on the list
local ignoreblank = isnotempty(args['ignoreblank'])
local showblankpos = isnotempty(args['showblankpositional'])
local values = {}
for k, v in pairs(pargs) do
if type(k) == 'string' and knownargs[k] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(k, regexp) then
knownflag = true
break
end
end
if not knownflag and ( not ignoreblank or isnotempty(v) ) then
table.insert(values, clean(k))
end
elseif type(k) == 'number' and knownargs[tostring(k)] == nil then
local knownflag = false
for _, regexp in ipairs(regexps) do
if mw.ustring.match(tostring(k), regexp) then
knownflag = true
break
end
end
if not knownflag and ( showblankpos or isnotempty(v) ) then
table.insert(values, k .. ' = ' .. clean(v))
end
end
end
-- add results to the output tables
local res = {}
if #values > 0 then
local unknown_text = args['unknown'] or 'Found _VALUE_, '
if mw.getCurrentFrame():preprocess( "{{REVISIONID}}" ) == "" then
local preview_text = args['preview']
if isnotempty(preview_text) then
preview_text = require('Module:If preview')._warning({preview_text})
elseif preview == nil then
preview_text = unknown_text
end
unknown_text = preview_text
end
for _, v in pairs(values) do
-- Fix odd bug for | = which gets stripped to the empty string and
-- breaks category links
if v == '' then v = ' ' end
-- avoid error with v = 'example%2' ("invalid capture index")
local r = unknown_text:gsub('_VALUE_', {_VALUE_ = v})
table.insert(res, r)
end
end
return table.concat(res)
end
function p.check(frame)
local args = frame.args
local pargs = frame:getParent().args
return p._check(args, pargs)
end
return p
93db6d115d4328d2a5148bb42959105e367b663e
Module:String
828
33
62
61
2023-08-25T02:26:47Z
CheSnail
2
1 revision imported
Scribunto
text/plain
--[[
This module is intended to provide access to basic string functions.
Most of the functions provided here can be invoked with named parameters,
unnamed parameters, or a mixture. If named parameters are used, Mediawiki will
automatically remove any leading or trailing whitespace from the parameter.
Depending on the intended use, it may be advantageous to either preserve or
remove such whitespace.
Global options
ignore_errors: If set to 'true' or 1, any error condition will result in
an empty string being returned rather than an error message.
error_category: If an error occurs, specifies the name of a category to
include with the error message. The default category is
[Category:Errors reported by Module String].
no_category: If set to 'true' or 1, no category will be added if an error
is generated.
Unit tests for this module are available at Module:String/tests.
]]
local str = {}
--[[
len
This function returns the length of the target string.
Usage:
{{#invoke:String|len|target_string|}}
OR
{{#invoke:String|len|s=target_string}}
Parameters
s: The string whose length to report
If invoked using named parameters, Mediawiki will automatically remove any leading or
trailing whitespace from the target string.
]]
function str.len( frame )
local new_args = str._getParameters( frame.args, {'s'} )
local s = new_args['s'] or ''
return mw.ustring.len( s )
end
--[[
sub
This function returns a substring of the target string at specified indices.
Usage:
{{#invoke:String|sub|target_string|start_index|end_index}}
OR
{{#invoke:String|sub|s=target_string|i=start_index|j=end_index}}
Parameters
s: The string to return a subset of
i: The fist index of the substring to return, defaults to 1.
j: The last index of the string to return, defaults to the last character.
The first character of the string is assigned an index of 1. If either i or j
is a negative value, it is interpreted the same as selecting a character by
counting from the end of the string. Hence, a value of -1 is the same as
selecting the last character of the string.
If the requested indices are out of range for the given string, an error is
reported.
]]
function str.sub( frame )
local new_args = str._getParameters( frame.args, { 's', 'i', 'j' } )
local s = new_args['s'] or ''
local i = tonumber( new_args['i'] ) or 1
local j = tonumber( new_args['j'] ) or -1
local len = mw.ustring.len( s )
-- Convert negatives for range checking
if i < 0 then
i = len + i + 1
end
if j < 0 then
j = len + j + 1
end
if i > len or j > len or i < 1 or j < 1 then
return str._error( 'String subset index out of range' )
end
if j < i then
return str._error( 'String subset indices out of order' )
end
return mw.ustring.sub( s, i, j )
end
--[[
This function implements that features of {{str sub old}} and is kept in order
to maintain these older templates.
]]
function str.sublength( frame )
local i = tonumber( frame.args.i ) or 0
local len = tonumber( frame.args.len )
return mw.ustring.sub( frame.args.s, i + 1, len and ( i + len ) )
end
--[[
_match
This function returns a substring from the source string that matches a
specified pattern. It is exported for use in other modules
Usage:
strmatch = require("Module:String")._match
sresult = strmatch( s, pattern, start, match, plain, nomatch )
Parameters
s: The string to search
pattern: The pattern or string to find within the string
start: The index within the source string to start the search. The first
character of the string has index 1. Defaults to 1.
match: In some cases it may be possible to make multiple matches on a single
string. This specifies which match to return, where the first match is
match= 1. If a negative number is specified then a match is returned
counting from the last match. Hence match = -1 is the same as requesting
the last match. Defaults to 1.
plain: A flag indicating that the pattern should be understood as plain
text. Defaults to false.
nomatch: If no match is found, output the "nomatch" value rather than an error.
For information on constructing Lua patterns, a form of [regular expression], see:
* http://www.lua.org/manual/5.1/manual.html#5.4.1
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Patterns
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Ustring_patterns
]]
-- This sub-routine is exported for use in other modules
function str._match( s, pattern, start, match_index, plain_flag, nomatch )
if s == '' then
return str._error( 'Target string is empty' )
end
if pattern == '' then
return str._error( 'Pattern string is empty' )
end
start = tonumber(start) or 1
if math.abs(start) < 1 or math.abs(start) > mw.ustring.len( s ) then
return str._error( 'Requested start is out of range' )
end
if match_index == 0 then
return str._error( 'Match index is out of range' )
end
if plain_flag then
pattern = str._escapePattern( pattern )
end
local result
if match_index == 1 then
-- Find first match is simple case
result = mw.ustring.match( s, pattern, start )
else
if start > 1 then
s = mw.ustring.sub( s, start )
end
local iterator = mw.ustring.gmatch(s, pattern)
if match_index > 0 then
-- Forward search
for w in iterator do
match_index = match_index - 1
if match_index == 0 then
result = w
break
end
end
else
-- Reverse search
local result_table = {}
local count = 1
for w in iterator do
result_table[count] = w
count = count + 1
end
result = result_table[ count + match_index ]
end
end
if result == nil then
if nomatch == nil then
return str._error( 'Match not found' )
else
return nomatch
end
else
return result
end
end
--[[
match
This function returns a substring from the source string that matches a
specified pattern.
Usage:
{{#invoke:String|match|source_string|pattern_string|start_index|match_number|plain_flag|nomatch_output}}
OR
{{#invoke:String|match|s=source_string|pattern=pattern_string|start=start_index
|match=match_number|plain=plain_flag|nomatch=nomatch_output}}
Parameters
s: The string to search
pattern: The pattern or string to find within the string
start: The index within the source string to start the search. The first
character of the string has index 1. Defaults to 1.
match: In some cases it may be possible to make multiple matches on a single
string. This specifies which match to return, where the first match is
match= 1. If a negative number is specified then a match is returned
counting from the last match. Hence match = -1 is the same as requesting
the last match. Defaults to 1.
plain: A flag indicating that the pattern should be understood as plain
text. Defaults to false.
nomatch: If no match is found, output the "nomatch" value rather than an error.
If invoked using named parameters, Mediawiki will automatically remove any leading or
trailing whitespace from each string. In some circumstances this is desirable, in
other cases one may want to preserve the whitespace.
If the match_number or start_index are out of range for the string being queried, then
this function generates an error. An error is also generated if no match is found.
If one adds the parameter ignore_errors=true, then the error will be suppressed and
an empty string will be returned on any failure.
For information on constructing Lua patterns, a form of [regular expression], see:
* http://www.lua.org/manual/5.1/manual.html#5.4.1
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Patterns
* http://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Ustring_patterns
]]
-- This is the entry point for #invoke:String|match
function str.match( frame )
local new_args = str._getParameters( frame.args, {'s', 'pattern', 'start', 'match', 'plain', 'nomatch'} )
local s = new_args['s'] or ''
local start = tonumber( new_args['start'] ) or 1
local plain_flag = str._getBoolean( new_args['plain'] or false )
local pattern = new_args['pattern'] or ''
local match_index = math.floor( tonumber(new_args['match']) or 1 )
local nomatch = new_args['nomatch']
return str._match( s, pattern, start, match_index, plain_flag, nomatch )
end
--[[
pos
This function returns a single character from the target string at position pos.
Usage:
{{#invoke:String|pos|target_string|index_value}}
OR
{{#invoke:String|pos|target=target_string|pos=index_value}}
Parameters
target: The string to search
pos: The index for the character to return
If invoked using named parameters, Mediawiki will automatically remove any leading or
trailing whitespace from the target string. In some circumstances this is desirable, in
other cases one may want to preserve the whitespace.
The first character has an index value of 1.
If one requests a negative value, this function will select a character by counting backwards
from the end of the string. In other words pos = -1 is the same as asking for the last character.
A requested value of zero, or a value greater than the length of the string returns an error.
]]
function str.pos( frame )
local new_args = str._getParameters( frame.args, {'target', 'pos'} )
local target_str = new_args['target'] or ''
local pos = tonumber( new_args['pos'] ) or 0
if pos == 0 or math.abs(pos) > mw.ustring.len( target_str ) then
return str._error( 'String index out of range' )
end
return mw.ustring.sub( target_str, pos, pos )
end
--[[
str_find
This function duplicates the behavior of {{str_find}}, including all of its quirks.
This is provided in order to support existing templates, but is NOT RECOMMENDED for
new code and templates. New code is recommended to use the "find" function instead.
Returns the first index in "source" that is a match to "target". Indexing is 1-based,
and the function returns -1 if the "target" string is not present in "source".
Important Note: If the "target" string is empty / missing, this function returns a
value of "1", which is generally unexpected behavior, and must be accounted for
separatetly.
]]
function str.str_find( frame )
local new_args = str._getParameters( frame.args, {'source', 'target'} )
local source_str = new_args['source'] or ''
local target_str = new_args['target'] or ''
if target_str == '' then
return 1
end
local start = mw.ustring.find( source_str, target_str, 1, true )
if start == nil then
start = -1
end
return start
end
--[[
find
This function allows one to search for a target string or pattern within another
string.
Usage:
{{#invoke:String|find|source_str|target_string|start_index|plain_flag}}
OR
{{#invoke:String|find|source=source_str|target=target_str|start=start_index|plain=plain_flag}}
Parameters
source: The string to search
target: The string or pattern to find within source
start: The index within the source string to start the search, defaults to 1
plain: Boolean flag indicating that target should be understood as plain
text and not as a Lua style regular expression, defaults to true
If invoked using named parameters, Mediawiki will automatically remove any leading or
trailing whitespace from the parameter. In some circumstances this is desirable, in
other cases one may want to preserve the whitespace.
This function returns the first index >= "start" where "target" can be found
within "source". Indices are 1-based. If "target" is not found, then this
function returns 0. If either "source" or "target" are missing / empty, this
function also returns 0.
This function should be safe for UTF-8 strings.
]]
function str.find( frame )
local new_args = str._getParameters( frame.args, {'source', 'target', 'start', 'plain' } )
local source_str = new_args['source'] or ''
local pattern = new_args['target'] or ''
local start_pos = tonumber(new_args['start']) or 1
local plain = new_args['plain'] or true
if source_str == '' or pattern == '' then
return 0
end
plain = str._getBoolean( plain )
local start = mw.ustring.find( source_str, pattern, start_pos, plain )
if start == nil then
start = 0
end
return start
end
--[[
replace
This function allows one to replace a target string or pattern within another
string.
Usage:
{{#invoke:String|replace|source_str|pattern_string|replace_string|replacement_count|plain_flag}}
OR
{{#invoke:String|replace|source=source_string|pattern=pattern_string|replace=replace_string|
count=replacement_count|plain=plain_flag}}
Parameters
source: The string to search
pattern: The string or pattern to find within source
replace: The replacement text
count: The number of occurences to replace, defaults to all.
plain: Boolean flag indicating that pattern should be understood as plain
text and not as a Lua style regular expression, defaults to true
]]
function str.replace( frame )
local new_args = str._getParameters( frame.args, {'source', 'pattern', 'replace', 'count', 'plain' } )
local source_str = new_args['source'] or ''
local pattern = new_args['pattern'] or ''
local replace = new_args['replace'] or ''
local count = tonumber( new_args['count'] )
local plain = new_args['plain'] or true
if source_str == '' or pattern == '' then
return source_str
end
plain = str._getBoolean( plain )
if plain then
pattern = str._escapePattern( pattern )
replace = mw.ustring.gsub( replace, "%%", "%%%%" ) --Only need to escape replacement sequences.
end
local result
if count ~= nil then
result = mw.ustring.gsub( source_str, pattern, replace, count )
else
result = mw.ustring.gsub( source_str, pattern, replace )
end
return result
end
--[[
simple function to pipe string.rep to templates.
]]
function str.rep( frame )
local repetitions = tonumber( frame.args[2] )
if not repetitions then
return str._error( 'function rep expects a number as second parameter, received "' .. ( frame.args[2] or '' ) .. '"' )
end
return string.rep( frame.args[1] or '', repetitions )
end
--[[
escapePattern
This function escapes special characters from a Lua string pattern. See [1]
for details on how patterns work.
[1] https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#Patterns
Usage:
{{#invoke:String|escapePattern|pattern_string}}
Parameters
pattern_string: The pattern string to escape.
]]
function str.escapePattern( frame )
local pattern_str = frame.args[1]
if not pattern_str then
return str._error( 'No pattern string specified' )
end
local result = str._escapePattern( pattern_str )
return result
end
--[[
count
This function counts the number of occurrences of one string in another.
]]
function str.count(frame)
local args = str._getParameters(frame.args, {'source', 'pattern', 'plain'})
local source = args.source or ''
local pattern = args.pattern or ''
local plain = str._getBoolean(args.plain or true)
if plain then
pattern = str._escapePattern(pattern)
end
local _, count = mw.ustring.gsub(source, pattern, '')
return count
end
--[[
endswith
This function determines whether a string ends with another string.
]]
function str.endswith(frame)
local args = str._getParameters(frame.args, {'source', 'pattern'})
local source = args.source or ''
local pattern = args.pattern or ''
if pattern == '' then
-- All strings end with the empty string.
return "yes"
end
if mw.ustring.sub(source, -mw.ustring.len(pattern), -1) == pattern then
return "yes"
else
return ""
end
end
--[[
join
Join all non empty arguments together; the first argument is the separator.
Usage:
{{#invoke:String|join|sep|one|two|three}}
]]
function str.join(frame)
local args = {}
local sep
for _, v in ipairs( frame.args ) do
if sep then
if v ~= '' then
table.insert(args, v)
end
else
sep = v
end
end
return table.concat( args, sep or '' )
end
--[[
Helper function that populates the argument list given that user may need to use a mix of
named and unnamed parameters. This is relevant because named parameters are not
identical to unnamed parameters due to string trimming, and when dealing with strings
we sometimes want to either preserve or remove that whitespace depending on the application.
]]
function str._getParameters( frame_args, arg_list )
local new_args = {}
local index = 1
local value
for _, arg in ipairs( arg_list ) do
value = frame_args[arg]
if value == nil then
value = frame_args[index]
index = index + 1
end
new_args[arg] = value
end
return new_args
end
--[[
Helper function to handle error messages.
]]
function str._error( error_str )
local frame = mw.getCurrentFrame()
local error_category = frame.args.error_category or 'Errors reported by Module String'
local ignore_errors = frame.args.ignore_errors or false
local no_category = frame.args.no_category or false
if str._getBoolean(ignore_errors) then
return ''
end
local error_str = '<strong class="error">String Module Error: ' .. error_str .. '</strong>'
if error_category ~= '' and not str._getBoolean( no_category ) then
error_str = '[[Category:' .. error_category .. ']]' .. error_str
end
return error_str
end
--[[
Helper Function to interpret boolean strings
]]
function str._getBoolean( boolean_str )
local boolean_value
if type( boolean_str ) == 'string' then
boolean_str = boolean_str:lower()
if boolean_str == 'false' or boolean_str == 'no' or boolean_str == '0'
or boolean_str == '' then
boolean_value = false
else
boolean_value = true
end
elseif type( boolean_str ) == 'boolean' then
boolean_value = boolean_str
else
error( 'No boolean value found' )
end
return boolean_value
end
--[[
Helper function that escapes all pattern characters so that they will be treated
as plain text.
]]
function str._escapePattern( pattern_str )
return mw.ustring.gsub( pattern_str, "([%(%)%.%%%+%-%*%?%[%^%$%]])", "%%%1" )
end
return str
6df794dd52434e0f6a372c9918f5a9dedd15f579
Module:Infobox/styles.css
828
34
64
63
2023-08-25T02:26:48Z
CheSnail
2
1 revision imported
text
text/plain
/* {{pp|small=y}} */
/*
* This TemplateStyles sheet deliberately does NOT include the full set of
* infobox styles. We are still working to migrate all of the manual
* infoboxes. See [[MediaWiki talk:Common.css/to do#Infobox]]
* DO NOT ADD THEM HERE
*/
/*
* not strictly certain these styles are necessary since the modules now
* exclusively output infobox-subbox or infobox, not both
* just replicating the module faithfully
*/
.infobox-subbox {
padding: 0;
border: none;
margin: -3px;
width: auto;
min-width: 100%;
font-size: 100%;
clear: none;
float: none;
background-color: transparent;
}
.infobox-3cols-child {
margin: auto;
}
.infobox .navbar {
font-size: 100%;
}
/* T281642 */
body.skin-minerva .infobox-header,
body.skin-minerva .infobox-subheader,
body.skin-minerva .infobox-above,
body.skin-minerva .infobox-title,
body.skin-minerva .infobox-image,
body.skin-minerva .infobox-full-data,
body.skin-minerva .infobox-below {
text-align: center;
}
e8de6d96f4fde53afc4a6b0fed534405ab59b0a7
Module:List
828
35
66
65
2023-08-25T02:26:48Z
CheSnail
2
1 revision imported
Scribunto
text/plain
local libUtil = require('libraryUtil')
local checkType = libUtil.checkType
local mTableTools = require('Module:TableTools')
local p = {}
local listTypes = {
['bulleted'] = true,
['unbulleted'] = true,
['horizontal'] = true,
['ordered'] = true,
['horizontal_ordered'] = true
}
function p.makeListData(listType, args)
-- Constructs a data table to be passed to p.renderList.
local data = {}
-- Classes and TemplateStyles
data.classes = {}
data.templatestyles = ''
if listType == 'horizontal' or listType == 'horizontal_ordered' then
table.insert(data.classes, 'hlist')
data.templatestyles = mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'Hlist/styles.css' }
}
elseif listType == 'unbulleted' then
table.insert(data.classes, 'plainlist')
data.templatestyles = mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = 'Plainlist/styles.css' }
}
end
table.insert(data.classes, args.class)
-- Main div style
data.style = args.style
-- Indent for horizontal lists
if listType == 'horizontal' or listType == 'horizontal_ordered' then
local indent = tonumber(args.indent)
indent = indent and indent * 1.6 or 0
if indent > 0 then
data.marginLeft = indent .. 'em'
end
end
-- List style types for ordered lists
-- This could be "1, 2, 3", "a, b, c", or a number of others. The list style
-- type is either set by the "type" attribute or the "list-style-type" CSS
-- property.
if listType == 'ordered' or listType == 'horizontal_ordered' then
data.listStyleType = args.list_style_type or args['list-style-type']
data.type = args['type']
-- Detect invalid type attributes and attempt to convert them to
-- list-style-type CSS properties.
if data.type
and not data.listStyleType
and not tostring(data.type):find('^%s*[1AaIi]%s*$')
then
data.listStyleType = data.type
data.type = nil
end
end
-- List tag type
if listType == 'ordered' or listType == 'horizontal_ordered' then
data.listTag = 'ol'
else
data.listTag = 'ul'
end
-- Start number for ordered lists
data.start = args.start
if listType == 'horizontal_ordered' then
-- Apply fix to get start numbers working with horizontal ordered lists.
local startNum = tonumber(data.start)
if startNum then
data.counterReset = 'listitem ' .. tostring(startNum - 1)
end
end
-- List style
-- ul_style and ol_style are included for backwards compatibility. No
-- distinction is made for ordered or unordered lists.
data.listStyle = args.list_style
-- List items
-- li_style is included for backwards compatibility. item_style was included
-- to be easier to understand for non-coders.
data.itemStyle = args.item_style or args.li_style
data.items = {}
for _, num in ipairs(mTableTools.numKeys(args)) do
local item = {}
item.content = args[num]
item.style = args['item' .. tostring(num) .. '_style']
or args['item_style' .. tostring(num)]
item.value = args['item' .. tostring(num) .. '_value']
or args['item_value' .. tostring(num)]
table.insert(data.items, item)
end
return data
end
function p.renderList(data)
-- Renders the list HTML.
-- Return the blank string if there are no list items.
if type(data.items) ~= 'table' or #data.items < 1 then
return ''
end
-- Render the main div tag.
local root = mw.html.create('div')
for _, class in ipairs(data.classes or {}) do
root:addClass(class)
end
root:css{['margin-left'] = data.marginLeft}
if data.style then
root:cssText(data.style)
end
-- Render the list tag.
local list = root:tag(data.listTag or 'ul')
list
:attr{start = data.start, type = data.type}
:css{
['counter-reset'] = data.counterReset,
['list-style-type'] = data.listStyleType
}
if data.listStyle then
list:cssText(data.listStyle)
end
-- Render the list items
for _, t in ipairs(data.items or {}) do
local item = list:tag('li')
if data.itemStyle then
item:cssText(data.itemStyle)
end
if t.style then
item:cssText(t.style)
end
item
:attr{value = t.value}
:wikitext(t.content)
end
return data.templatestyles .. tostring(root)
end
function p.renderTrackingCategories(args)
local isDeprecated = false -- Tracks deprecated parameters.
for k, v in pairs(args) do
k = tostring(k)
if k:find('^item_style%d+$') or k:find('^item_value%d+$') then
isDeprecated = true
break
end
end
local ret = ''
if isDeprecated then
ret = ret .. '[[Category:List templates with deprecated parameters]]'
end
return ret
end
function p.makeList(listType, args)
if not listType or not listTypes[listType] then
error(string.format(
"bad argument #1 to 'makeList' ('%s' is not a valid list type)",
tostring(listType)
), 2)
end
checkType('makeList', 2, args, 'table')
local data = p.makeListData(listType, args)
local list = p.renderList(data)
local trackingCategories = p.renderTrackingCategories(args)
return list .. trackingCategories
end
for listType in pairs(listTypes) do
p[listType] = function (frame)
local mArguments = require('Module:Arguments')
local origArgs = mArguments.getArgs(frame, {
valueFunc = function (key, value)
if not value or not mw.ustring.find(value, '%S') then return nil end
if mw.ustring.find(value, '^%s*[%*#;:]') then
return value
else
return value:match('^%s*(.-)%s*$')
end
return nil
end
})
-- Copy all the arguments to a new table, for faster indexing.
local args = {}
for k, v in pairs(origArgs) do
args[k] = v
end
return p.makeList(listType, args)
end
end
return p
7a4f36a6e9cd56370bdd8207d23694124821dc1a
Module:TableTools
828
36
68
67
2023-08-25T02:26:49Z
CheSnail
2
1 revision imported
Scribunto
text/plain
------------------------------------------------------------------------------------
-- TableTools --
-- --
-- This module includes a number of functions for dealing with Lua tables. --
-- It is a meta-module, meant to be called from other Lua modules, and should not --
-- be called directly from #invoke. --
------------------------------------------------------------------------------------
local libraryUtil = require('libraryUtil')
local p = {}
-- Define often-used variables and functions.
local floor = math.floor
local infinity = math.huge
local checkType = libraryUtil.checkType
local checkTypeMulti = libraryUtil.checkTypeMulti
------------------------------------------------------------------------------------
-- isPositiveInteger
--
-- This function returns true if the given value is a positive integer, and false
-- if not. Although it doesn't operate on tables, it is included here as it is
-- useful for determining whether a given table key is in the array part or the
-- hash part of a table.
------------------------------------------------------------------------------------
function p.isPositiveInteger(v)
return type(v) == 'number' and v >= 1 and floor(v) == v and v < infinity
end
------------------------------------------------------------------------------------
-- isNan
--
-- This function returns true if the given number is a NaN value, and false if
-- not. Although it doesn't operate on tables, it is included here as it is useful
-- for determining whether a value can be a valid table key. Lua will generate an
-- error if a NaN is used as a table key.
------------------------------------------------------------------------------------
function p.isNan(v)
return type(v) == 'number' and v ~= v
end
------------------------------------------------------------------------------------
-- shallowClone
--
-- This returns a clone of a table. The value returned is a new table, but all
-- subtables and functions are shared. Metamethods are respected, but the returned
-- table will have no metatable of its own.
------------------------------------------------------------------------------------
function p.shallowClone(t)
checkType('shallowClone', 1, t, 'table')
local ret = {}
for k, v in pairs(t) do
ret[k] = v
end
return ret
end
------------------------------------------------------------------------------------
-- removeDuplicates
--
-- This removes duplicate values from an array. Non-positive-integer keys are
-- ignored. The earliest value is kept, and all subsequent duplicate values are
-- removed, but otherwise the array order is unchanged.
------------------------------------------------------------------------------------
function p.removeDuplicates(arr)
checkType('removeDuplicates', 1, arr, 'table')
local isNan = p.isNan
local ret, exists = {}, {}
for _, v in ipairs(arr) do
if isNan(v) then
-- NaNs can't be table keys, and they are also unique, so we don't need to check existence.
ret[#ret + 1] = v
else
if not exists[v] then
ret[#ret + 1] = v
exists[v] = true
end
end
end
return ret
end
------------------------------------------------------------------------------------
-- numKeys
--
-- This takes a table and returns an array containing the numbers of any numerical
-- keys that have non-nil values, sorted in numerical order.
------------------------------------------------------------------------------------
function p.numKeys(t)
checkType('numKeys', 1, t, 'table')
local isPositiveInteger = p.isPositiveInteger
local nums = {}
for k in pairs(t) do
if isPositiveInteger(k) then
nums[#nums + 1] = k
end
end
table.sort(nums)
return nums
end
------------------------------------------------------------------------------------
-- affixNums
--
-- This takes a table and returns an array containing the numbers of keys with the
-- specified prefix and suffix. For example, for the table
-- {a1 = 'foo', a3 = 'bar', a6 = 'baz'} and the prefix "a", affixNums will return
-- {1, 3, 6}.
------------------------------------------------------------------------------------
function p.affixNums(t, prefix, suffix)
checkType('affixNums', 1, t, 'table')
checkType('affixNums', 2, prefix, 'string', true)
checkType('affixNums', 3, suffix, 'string', true)
local function cleanPattern(s)
-- Cleans a pattern so that the magic characters ()%.[]*+-?^$ are interpreted literally.
return s:gsub('([%(%)%%%.%[%]%*%+%-%?%^%$])', '%%%1')
end
prefix = prefix or ''
suffix = suffix or ''
prefix = cleanPattern(prefix)
suffix = cleanPattern(suffix)
local pattern = '^' .. prefix .. '([1-9]%d*)' .. suffix .. '$'
local nums = {}
for k in pairs(t) do
if type(k) == 'string' then
local num = mw.ustring.match(k, pattern)
if num then
nums[#nums + 1] = tonumber(num)
end
end
end
table.sort(nums)
return nums
end
------------------------------------------------------------------------------------
-- numData
--
-- Given a table with keys like {"foo1", "bar1", "foo2", "baz2"}, returns a table
-- of subtables in the format
-- {[1] = {foo = 'text', bar = 'text'}, [2] = {foo = 'text', baz = 'text'}}.
-- Keys that don't end with an integer are stored in a subtable named "other". The
-- compress option compresses the table so that it can be iterated over with
-- ipairs.
------------------------------------------------------------------------------------
function p.numData(t, compress)
checkType('numData', 1, t, 'table')
checkType('numData', 2, compress, 'boolean', true)
local ret = {}
for k, v in pairs(t) do
local prefix, num = mw.ustring.match(tostring(k), '^([^0-9]*)([1-9][0-9]*)$')
if num then
num = tonumber(num)
local subtable = ret[num] or {}
if prefix == '' then
-- Positional parameters match the blank string; put them at the start of the subtable instead.
prefix = 1
end
subtable[prefix] = v
ret[num] = subtable
else
local subtable = ret.other or {}
subtable[k] = v
ret.other = subtable
end
end
if compress then
local other = ret.other
ret = p.compressSparseArray(ret)
ret.other = other
end
return ret
end
------------------------------------------------------------------------------------
-- compressSparseArray
--
-- This takes an array with one or more nil values, and removes the nil values
-- while preserving the order, so that the array can be safely traversed with
-- ipairs.
------------------------------------------------------------------------------------
function p.compressSparseArray(t)
checkType('compressSparseArray', 1, t, 'table')
local ret = {}
local nums = p.numKeys(t)
for _, num in ipairs(nums) do
ret[#ret + 1] = t[num]
end
return ret
end
------------------------------------------------------------------------------------
-- sparseIpairs
--
-- This is an iterator for sparse arrays. It can be used like ipairs, but can
-- handle nil values.
------------------------------------------------------------------------------------
function p.sparseIpairs(t)
checkType('sparseIpairs', 1, t, 'table')
local nums = p.numKeys(t)
local i = 0
local lim = #nums
return function ()
i = i + 1
if i <= lim then
local key = nums[i]
return key, t[key]
else
return nil, nil
end
end
end
------------------------------------------------------------------------------------
-- size
--
-- This returns the size of a key/value pair table. It will also work on arrays,
-- but for arrays it is more efficient to use the # operator.
------------------------------------------------------------------------------------
function p.size(t)
checkType('size', 1, t, 'table')
local i = 0
for _ in pairs(t) do
i = i + 1
end
return i
end
local function defaultKeySort(item1, item2)
-- "number" < "string", so numbers will be sorted before strings.
local type1, type2 = type(item1), type(item2)
if type1 ~= type2 then
return type1 < type2
elseif type1 == 'table' or type1 == 'boolean' or type1 == 'function' then
return tostring(item1) < tostring(item2)
else
return item1 < item2
end
end
------------------------------------------------------------------------------------
-- keysToList
--
-- Returns an array of the keys in a table, sorted using either a default
-- comparison function or a custom keySort function.
------------------------------------------------------------------------------------
function p.keysToList(t, keySort, checked)
if not checked then
checkType('keysToList', 1, t, 'table')
checkTypeMulti('keysToList', 2, keySort, {'function', 'boolean', 'nil'})
end
local arr = {}
local index = 1
for k in pairs(t) do
arr[index] = k
index = index + 1
end
if keySort ~= false then
keySort = type(keySort) == 'function' and keySort or defaultKeySort
table.sort(arr, keySort)
end
return arr
end
------------------------------------------------------------------------------------
-- sortedPairs
--
-- Iterates through a table, with the keys sorted using the keysToList function.
-- If there are only numerical keys, sparseIpairs is probably more efficient.
------------------------------------------------------------------------------------
function p.sortedPairs(t, keySort)
checkType('sortedPairs', 1, t, 'table')
checkType('sortedPairs', 2, keySort, 'function', true)
local arr = p.keysToList(t, keySort, true)
local i = 0
return function ()
i = i + 1
local key = arr[i]
if key ~= nil then
return key, t[key]
else
return nil, nil
end
end
end
------------------------------------------------------------------------------------
-- isArray
--
-- Returns true if the given value is a table and all keys are consecutive
-- integers starting at 1.
------------------------------------------------------------------------------------
function p.isArray(v)
if type(v) ~= 'table' then
return false
end
local i = 0
for _ in pairs(v) do
i = i + 1
if v[i] == nil then
return false
end
end
return true
end
------------------------------------------------------------------------------------
-- isArrayLike
--
-- Returns true if the given value is iterable and all keys are consecutive
-- integers starting at 1.
------------------------------------------------------------------------------------
function p.isArrayLike(v)
if not pcall(pairs, v) then
return false
end
local i = 0
for _ in pairs(v) do
i = i + 1
if v[i] == nil then
return false
end
end
return true
end
------------------------------------------------------------------------------------
-- invert
--
-- Transposes the keys and values in an array. For example, {"a", "b", "c"} ->
-- {a = 1, b = 2, c = 3}. Duplicates are not supported (result values refer to
-- the index of the last duplicate) and NaN values are ignored.
------------------------------------------------------------------------------------
function p.invert(arr)
checkType("invert", 1, arr, "table")
local isNan = p.isNan
local map = {}
for i, v in ipairs(arr) do
if not isNan(v) then
map[v] = i
end
end
return map
end
------------------------------------------------------------------------------------
-- listToSet
--
-- Creates a set from the array part of the table. Indexing the set by any of the
-- values of the array returns true. For example, {"a", "b", "c"} ->
-- {a = true, b = true, c = true}. NaN values are ignored as Lua considers them
-- never equal to any value (including other NaNs or even themselves).
------------------------------------------------------------------------------------
function p.listToSet(arr)
checkType("listToSet", 1, arr, "table")
local isNan = p.isNan
local set = {}
for _, v in ipairs(arr) do
if not isNan(v) then
set[v] = true
end
end
return set
end
------------------------------------------------------------------------------------
-- deepCopy
--
-- Recursive deep copy function. Preserves identities of subtables.
------------------------------------------------------------------------------------
local function _deepCopy(orig, includeMetatable, already_seen)
-- Stores copies of tables indexed by the original table.
already_seen = already_seen or {}
local copy = already_seen[orig]
if copy ~= nil then
return copy
end
if type(orig) == 'table' then
copy = {}
for orig_key, orig_value in pairs(orig) do
copy[_deepCopy(orig_key, includeMetatable, already_seen)] = _deepCopy(orig_value, includeMetatable, already_seen)
end
already_seen[orig] = copy
if includeMetatable then
local mt = getmetatable(orig)
if mt ~= nil then
local mt_copy = _deepCopy(mt, includeMetatable, already_seen)
setmetatable(copy, mt_copy)
already_seen[mt] = mt_copy
end
end
else -- number, string, boolean, etc
copy = orig
end
return copy
end
function p.deepCopy(orig, noMetatable, already_seen)
checkType("deepCopy", 3, already_seen, "table", true)
return _deepCopy(orig, not noMetatable, already_seen)
end
------------------------------------------------------------------------------------
-- sparseConcat
--
-- Concatenates all values in the table that are indexed by a number, in order.
-- sparseConcat{a, nil, c, d} => "acd"
-- sparseConcat{nil, b, c, d} => "bcd"
------------------------------------------------------------------------------------
function p.sparseConcat(t, sep, i, j)
local arr = {}
local arr_i = 0
for _, v in p.sparseIpairs(t) do
arr_i = arr_i + 1
arr[arr_i] = v
end
return table.concat(arr, sep, i, j)
end
------------------------------------------------------------------------------------
-- length
--
-- Finds the length of an array, or of a quasi-array with keys such as "data1",
-- "data2", etc., using an exponential search algorithm. It is similar to the
-- operator #, but may return a different value when there are gaps in the array
-- portion of the table. Intended to be used on data loaded with mw.loadData. For
-- other tables, use #.
-- Note: #frame.args in frame object always be set to 0, regardless of the number
-- of unnamed template parameters, so use this function for frame.args.
------------------------------------------------------------------------------------
function p.length(t, prefix)
-- requiring module inline so that [[Module:Exponential search]] which is
-- only needed by this one function doesn't get millions of transclusions
local expSearch = require("Module:Exponential search")
checkType('length', 1, t, 'table')
checkType('length', 2, prefix, 'string', true)
return expSearch(function (i)
local key
if prefix then
key = prefix .. tostring(i)
else
key = i
end
return t[key] ~= nil
end) or 0
end
------------------------------------------------------------------------------------
-- inArray
--
-- Returns true if valueToFind is a member of the array, and false otherwise.
------------------------------------------------------------------------------------
function p.inArray(arr, valueToFind)
checkType("inArray", 1, arr, "table")
-- if valueToFind is nil, error?
for _, v in ipairs(arr) do
if v == valueToFind then
return true
end
end
return false
end
return p
085e7094ac84eb0132ee65822cf3f69cd8ba3d81
Template:Tlx
10
37
70
69
2023-08-25T02:26:49Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
#REDIRECT [[Template:Template link expanded]]
{{Redirect category shell|
{{R from move}}
}}
1fec988ceb46cb324af228aac45d7cd25fcc9008
Template:Template link expanded
10
38
72
71
2023-08-25T02:26:50Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
{{#Invoke:Template link general|main|code=on}}<noinclude>
{{Documentation|1=Template:Tlg/doc
|content = {{tlg/doc|tlx}}
}}
<!-- Add categories to the /doc subpage, not here! -->
</noinclude>
6c99696fee02f1da368ed20d2504e19bc15b1c13
Module:Template link general
828
39
74
73
2023-08-25T02:26:50Z
CheSnail
2
1 revision imported
Scribunto
text/plain
-- This implements Template:Tlg
local getArgs = require('Module:Arguments').getArgs
local p = {}
-- Is a string non-empty?
local function _ne(s)
return s ~= nil and s ~= ""
end
local nw = mw.text.nowiki
local function addTemplate(s)
local i, _ = s:find(':', 1, true)
if i == nil then
return 'Template:' .. s
end
local ns = s:sub(1, i - 1)
if ns == '' or mw.site.namespaces[ns] then
return s
else
return 'Template:' .. s
end
end
local function trimTemplate(s)
local needle = 'template:'
if s:sub(1, needle:len()):lower() == needle then
return s:sub(needle:len() + 1)
else
return s
end
end
local function linkTitle(args)
if _ne(args.nolink) then
return args['1']
end
local titleObj
local titlePart = '[['
if args['1'] then
-- This handles :Page and other NS
titleObj = mw.title.new(args['1'], 'Template')
else
titleObj = mw.title.getCurrentTitle()
end
titlePart = titlePart .. (titleObj ~= nil and titleObj.fullText or
addTemplate(args['1']))
local textPart = args.alttext
if not _ne(textPart) then
if titleObj ~= nil then
textPart = titleObj:inNamespace("Template") and args['1'] or titleObj.fullText
else
-- redlink
textPart = args['1']
end
end
if _ne(args.subst) then
-- HACK: the ns thing above is probably broken
textPart = 'subst:' .. textPart
end
if _ne(args.brace) then
textPart = nw('{{') .. textPart .. nw('}}')
elseif _ne(args.braceinside) then
textPart = nw('{') .. textPart .. nw('}')
end
titlePart = titlePart .. '|' .. textPart .. ']]'
if _ne(args.braceinside) then
titlePart = nw('{') .. titlePart .. nw('}')
end
return titlePart
end
function p.main(frame)
local args = getArgs(frame, {
trim = true,
removeBlanks = false
})
return p._main(args)
end
function p._main(args)
local bold = _ne(args.bold) or _ne(args.boldlink) or _ne(args.boldname)
local italic = _ne(args.italic) or _ne(args.italics)
local dontBrace = _ne(args.brace) or _ne(args.braceinside)
local code = _ne(args.code) or _ne(args.tt)
local show_result = _ne(args._show_result)
local expand = _ne(args._expand)
-- Build the link part
local titlePart = linkTitle(args)
if bold then titlePart = "'''" .. titlePart .. "'''" end
if _ne(args.nowrapname) then titlePart = '<span class="nowrap">' .. titlePart .. '</span>' end
-- Build the arguments
local textPart = ""
local textPartBuffer = "|"
local codeArguments = {}
local codeArgumentsString = ""
local i = 2
local j = 1
while args[i] do
local val = args[i]
if val ~= "" then
if _ne(args.nowiki) then
-- Unstrip nowiki tags first because calling nw on something that already contains nowiki tags will
-- mangle the nowiki strip marker and result in literal UNIQ...QINU showing up
val = nw(mw.text.unstripNoWiki(val))
end
local k, v = string.match(val, "(.*)=(.*)")
if not k then
codeArguments[j] = val
j = j + 1
else
codeArguments[k] = v
end
codeArgumentsString = codeArgumentsString .. textPartBuffer .. val
if italic then
val = '<span style="font-style:italic;">' .. val .. '</span>'
end
textPart = textPart .. textPartBuffer .. val
end
i = i + 1
end
-- final wrap
local ret = titlePart .. textPart
if not dontBrace then ret = nw('{{') .. ret .. nw('}}') end
if _ne(args.a) then ret = nw('*') .. ' ' .. ret end
if _ne(args.kbd) then ret = '<kbd>' .. ret .. '</kbd>' end
if code then
ret = '<code>' .. ret .. '</code>'
elseif _ne(args.plaincode) then
ret = '<code style="border:none;background:transparent;">' .. ret .. '</code>'
end
if _ne(args.nowrap) then ret = '<span class="nowrap">' .. ret .. '</span>' end
--[[ Wrap as html??
local span = mw.html.create('span')
span:wikitext(ret)
--]]
if _ne(args.debug) then ret = ret .. '\n<pre>' .. mw.text.encode(mw.dumpObject(args)) .. '</pre>' end
if show_result then
local result = mw.getCurrentFrame():expandTemplate{title = addTemplate(args[1]), args = codeArguments}
ret = ret .. " → " .. result
end
if expand then
local query = mw.text.encode('{{' .. addTemplate(args[1]) .. string.gsub(codeArgumentsString, textPartBuffer, "|") .. '}}')
local url = mw.uri.fullUrl('special:ExpandTemplates', 'wpInput=' .. query)
mw.log()
ret = ret .. " [" .. tostring(url) .. "]"
end
return ret
end
return p
c7307fa3959d308a2dd7fd2f5009c1ce6db3d122
Template:Template other
10
40
76
75
2023-08-25T02:26:51Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
{{#switch:
<!--If no or empty "demospace" parameter then detect namespace-->
{{#if:{{{demospace|}}}
| {{lc: {{{demospace}}} }} <!--Use lower case "demospace"-->
| {{#ifeq:{{NAMESPACE}}|{{ns:Template}}
| template
| other
}}
}}
| template = {{{1|}}}
| other
| #default = {{{2|}}}
}}<!--End switch--><noinclude>
{{documentation}}
<!-- Add categories and interwikis to the /doc subpage, not here! -->
</noinclude>
06fb13d264df967b5232141067eb7d2b67372d76
Template:Clear
10
41
78
77
2023-08-25T02:26:51Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
<div style="clear:{{{1|both}}};"></div><noinclude>
{{documentation}}
</noinclude>
38bab3e3d7fbd3d6800d46556e60bc6bac494d72
Template:Distinguish
10
42
80
79
2023-08-25T02:26:52Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
{{#invoke:Distinguish|distinguish}}<noinclude><!-- splitting these lines causes {{Documentation}} template to terminate green shading when Distinguish is used in /doc pages. -->
{{Documentation}}
<!-- Add categories to the /doc subpage and interwikis to Wikidata, not here! -->
</noinclude>
f949a4cbfd6eb0ab77b832e69059a40a964b1fd8
Template:Sidebar
10
43
82
81
2023-08-25T02:26:52Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
{{#invoke:Sidebar|sidebar}}<noinclude>
{{documentation}}</noinclude>
ab2498000a99daf324f656b0badd187b4a3e2b42
Module:Distinguish
828
44
84
83
2023-08-25T02:26:53Z
CheSnail
2
1 revision imported
Scribunto
text/plain
local mHatnote = require('Module:Hatnote')
local mHatlist = require('Module:Hatnote list')
local mArguments --initialize lazily
local mTableTools --initialize lazily
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local p = {}
function p.distinguish(frame)
mArguments = require('Module:Arguments')
mTableTools = require('Module:TableTools')
local args = mArguments.getArgs(frame)
local selfref = args.selfref
local text = args.text
args = mTableTools.compressSparseArray(args)
return p._distinguish(args, text, selfref)
end
function p._distinguish(args, text, selfref)
checkType("_distinguish", 1, args, 'table')
if #args == 0 and not text then return '' end
local text = string.format(
'Not to be confused with %s.',
text or mHatlist.orList(args, true)
)
hnOptions = {selfref = selfref}
return mHatnote._hatnote(text, hnOptions)
end
return p
0364d14af01fc656ad1d898c5036fbd12a7ca938
Module:Effective protection expiry
828
45
86
85
2023-08-25T02:26:53Z
CheSnail
2
1 revision imported
Scribunto
text/plain
local p = {}
-- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known.
-- If no title is specified, the title of the page being displayed is used.
function p._main(action, pagename)
local title
if type(pagename) == 'table' and pagename.prefixedText then
title = pagename
elseif pagename then
title = mw.title.new(pagename)
else
title = mw.title.getCurrentTitle()
end
pagename = title.prefixedText
if action == 'autoreview' then
local stabilitySettings = mw.ext.FlaggedRevs.getStabilitySettings(title)
return stabilitySettings and stabilitySettings.expiry or 'unknown'
elseif action ~= 'edit' and action ~= 'move' and action ~= 'create' and action ~= 'upload' then
error( 'First parameter must be one of edit, move, create, upload, autoreview', 2 )
end
local rawExpiry = mw.getCurrentFrame():callParserFunction('PROTECTIONEXPIRY', action, pagename)
if rawExpiry == 'infinity' then
return 'infinity'
elseif rawExpiry == '' then
return 'unknown'
else
local year, month, day, hour, minute, second = rawExpiry:match(
'^(%d%d%d%d)(%d%d)(%d%d)(%d%d)(%d%d)(%d%d)$'
)
if year then
return string.format(
'%s-%s-%sT%s:%s:%s',
year, month, day, hour, minute, second
)
else
error('internal error in Module:Effective protection expiry; malformed expiry timestamp')
end
end
end
setmetatable(p, { __index = function(t, k)
return function(frame)
return t._main(k, frame.args[1])
end
end })
return p
9a8c58dc2667232ed08a9b206a5d89ca8150312b
Module:Effective protection level
828
46
88
87
2023-08-25T02:26:54Z
CheSnail
2
1 revision imported
Scribunto
text/plain
local p = {}
-- Returns the permission required to perform a given action on a given title.
-- If no title is specified, the title of the page being displayed is used.
function p._main(action, pagename)
local title
if type(pagename) == 'table' and pagename.prefixedText then
title = pagename
elseif pagename then
title = mw.title.new(pagename)
else
title = mw.title.getCurrentTitle()
end
pagename = title.prefixedText
if action == 'autoreview' then
local level = mw.ext.FlaggedRevs.getStabilitySettings(title)
level = level and level.autoreview
if level == 'review' then
return 'reviewer'
elseif level ~= '' then
return level
else
return nil -- not '*'. a page not being PC-protected is distinct from it being PC-protected with anyone able to review. also not '', as that would mean PC-protected but nobody can review
end
elseif action ~= 'edit' and action ~= 'move' and action ~= 'create' and action ~= 'upload' and action ~= 'undelete' then
error( 'First parameter must be one of edit, move, create, upload, undelete, autoreview', 2 )
end
if title.namespace == 8 then -- MediaWiki namespace
if title.text:sub(-3) == '.js' or title.text:sub(-4) == '.css' or title.contentModel == 'javascript' or title.contentModel == 'css' then -- site JS or CSS page
return 'interfaceadmin'
else -- any non-JS/CSS MediaWiki page
return 'sysop'
end
elseif title.namespace == 2 and title.isSubpage then
if title.contentModel == 'javascript' or title.contentModel == 'css' then -- user JS or CSS page
return 'interfaceadmin'
elseif title.contentModel == 'json' then -- user JSON page
return 'sysop'
end
end
if action == 'undelete' then
return 'sysop'
end
local level = title.protectionLevels[action] and title.protectionLevels[action][1]
if level == 'sysop' or level == 'editprotected' then
return 'sysop'
elseif title.cascadingProtection.restrictions[action] and title.cascadingProtection.restrictions[action][1] then -- used by a cascading-protected page
return 'sysop'
elseif level == 'templateeditor' then
return 'templateeditor'
elseif action == 'move' then
local blacklistentry = mw.ext.TitleBlacklist.test('edit', pagename) -- Testing action edit is correct, since this is for the source page. The target page name gets tested with action move.
if blacklistentry and not blacklistentry.params.autoconfirmed then
return 'templateeditor'
elseif title.namespace == 6 then
return 'filemover'
elseif level == 'extendedconfirmed' then
return 'extendedconfirmed'
else
return 'autoconfirmed'
end
end
local blacklistentry = mw.ext.TitleBlacklist.test(action, pagename)
if blacklistentry then
if not blacklistentry.params.autoconfirmed then
return 'templateeditor'
elseif level == 'extendedconfirmed' then
return 'extendedconfirmed'
else
return 'autoconfirmed'
end
elseif level == 'editsemiprotected' then -- create-semiprotected pages return this for some reason
return 'autoconfirmed'
elseif level then
return level
elseif action == 'upload' then
return 'autoconfirmed'
elseif action == 'create' and title.namespace % 2 == 0 and title.namespace ~= 118 then -- You need to be registered, but not autoconfirmed, to create non-talk pages other than drafts
return 'user'
else
return '*'
end
end
setmetatable(p, { __index = function(t, k)
return function(frame)
return t._main(k, frame.args[1])
end
end })
return p
70256a489edf6be9808031b14a7e3ef3e025da97
Module:File link
828
47
90
89
2023-08-25T02:26:54Z
CheSnail
2
1 revision imported
Scribunto
text/plain
-- This module provides a library for formatting file wikilinks.
local yesno = require('Module:Yesno')
local checkType = require('libraryUtil').checkType
local p = {}
function p._main(args)
checkType('_main', 1, args, 'table')
-- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our
-- own function to get the right error level.
local function checkArg(key, val, level)
if type(val) ~= 'string' then
error(string.format(
"type error in '%s' parameter of '_main' (expected string, got %s)",
key, type(val)
), level)
end
end
local ret = {}
-- Adds a positional parameter to the buffer.
local function addPositional(key)
local val = args[key]
if not val then
return nil
end
checkArg(key, val, 4)
ret[#ret + 1] = val
end
-- Adds a named parameter to the buffer. We assume that the parameter name
-- is the same as the argument key.
local function addNamed(key)
local val = args[key]
if not val then
return nil
end
checkArg(key, val, 4)
ret[#ret + 1] = key .. '=' .. val
end
-- Filename
checkArg('file', args.file, 3)
ret[#ret + 1] = 'File:' .. args.file
-- Format
if args.format then
checkArg('format', args.format)
if args.formatfile then
checkArg('formatfile', args.formatfile)
ret[#ret + 1] = args.format .. '=' .. args.formatfile
else
ret[#ret + 1] = args.format
end
end
-- Border
if yesno(args.border) then
ret[#ret + 1] = 'border'
end
addPositional('location')
addPositional('alignment')
addPositional('size')
addNamed('upright')
addNamed('link')
addNamed('alt')
addNamed('page')
addNamed('class')
addNamed('lang')
addNamed('start')
addNamed('end')
addNamed('thumbtime')
addPositional('caption')
return string.format('[[%s]]', table.concat(ret, '|'))
end
function p.main(frame)
local origArgs = require('Module:Arguments').getArgs(frame, {
wrappers = 'Template:File link'
})
if not origArgs.file then
error("'file' parameter missing from [[Template:File link]]", 0)
end
-- Copy the arguments that were passed to a new table to avoid looking up
-- every possible parameter in the frame object.
local args = {}
for k, v in pairs(origArgs) do
-- Make _BLANK a special argument to add a blank parameter. For use in
-- conditional templates etc. it is useful for blank arguments to be
-- ignored, but we still need a way to specify them so that we can do
-- things like [[File:Example.png|link=]].
if v == '_BLANK' then
v = ''
end
args[k] = v
end
return p._main(args)
end
return p
66925f088d11530f2482f04181a3baaaa0ad3d0c
Template:Tlf
10
72
140
139
2023-08-25T02:27:05Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
#REDIRECT [[Template:Template link with link off]]
{{Redirect category shell|
{{R from move}}
}}
52759e1d3f7c9aa4a03d0b7d4f84f4c6adf53edf
Template:Clc
10
90
176
175
2023-08-25T02:27:15Z
CheSnail
2
1 revision imported
wikitext
text/x-wiki
#REDIRECT [[Template:Category link with count]]
02280e2ab57b544236e11f913e3759c5781ca9d5
Guide:Character
0
98
191
2023-08-25T04:14:12Z
CheSnail
2
Created page with "The article should begin with a picture of the character. (Character) is a (label/labels) from (media). In the second paragraph, describe their role in the story, the actor that portrays them, the first and last episode they appear in, and any other miscellaneous information that feels important/significant. == Biography == Here, include a brief description of the character's life and how their story plays out in the media they're from. == Personality == Here, discuss..."
wikitext
text/x-wiki
The article should begin with a picture of the character.
(Character) is a (label/labels) from (media).
In the second paragraph, describe their role in the story, the actor that portrays them, the first and last episode they appear in, and any other miscellaneous information that feels important/significant.
== Biography ==
Here, include a brief description of the character's life and how their story plays out in the media they're from.
== Personality ==
Here, discuss the character's personality and what they are like within the work.
== Identity ==
Here, explore how the identity was revealed and how it is handled in the work itself. If the identity was revealed outside of the work, discuss how it was revealed and which of the individuals involved in the work spoke about it.
=== Reception ===
In this section, discuss the general and fan response to the character in relation to their identity.
== Gallery ==
Here, you can include any other pictures of the character that feel significant. This can include promotional material, screencaps from the show, or images of the character with the flag of their identity.
<gallery>
Example.jpg
</gallery>
== Trivia ==
* Here, list any trivia about the character.
== See Also ==
* Include a link to any official information about the character
== Tropes ==
* If the character falls into any tropes
* Include them here in a bulleted list
* You should also include a link to more information about the trope itself
[[Category:Guide]] [[Category:Help]] [[Category:Important]]
a7a0997716b2f0df339169c1d64841f669a5c0e8
Category:Guides
14
99
192
2023-08-25T04:15:45Z
CheSnail
2
Created page with "This category is for all page guides."
wikitext
text/x-wiki
This category is for all page guides.
10f53b20fe76641a8f162431f845398c8b522f7e
Category:Help
14
100
193
2023-08-25T04:16:03Z
CheSnail
2
Created page with "Pages that may help users navigate the wiki and edit it."
wikitext
text/x-wiki
Pages that may help users navigate the wiki and edit it.
287684d6698e9373455a8bf623757458648d1c97
Category:Important
14
101
194
2023-08-25T04:16:18Z
CheSnail
2
Created page with "Pages which are particularly important to using the wiki."
wikitext
text/x-wiki
Pages which are particularly important to using the wiki.
e226daeffc63216e6d4d50852629a52748af4e57
Editing Guide
0
19
197
34
2023-08-25T04:19:51Z
CheSnail
2
/* General Editing */
wikitext
text/x-wiki
== General Editing ==
Pages should follow standard wiki formatting, which means:
# Written in formal American English.
# Do not plagiarize.
# Bold text must only be used in the beginning of the article/section of an article for the name of the term and any alternate spellings.
# Italicized text must only be used for titles of books, shows, games or other media.
# Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
# One space/line between paragraphs.
# Add links to any other terms used in the article.
# Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
# Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
# With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
# Do not address the reader.
# Do not add "WIP" or author's notes.
Additionally, personal bias should not be in these articles.
=== Titles ===
Some characters have only a first name and there may be more than one character with the same first and last name, this case, title the page "Character (Media)".
=== Categories ===
If a character identifies with a microlabel, put them in the broad category for that label. For example, if a character is cupiosexual, then they would be put into the "A-Spec Characters" category. This is to keep the wiki less cluttered and to have information be easier to find.
[[Category:Help]] [[Category:Important]]
32fb11d6b9052751c3049374e322f170782768a3
198
197
2023-08-25T04:31:43Z
CheSnail
2
wikitext
text/x-wiki
== General Editing ==
Pages should follow standard wiki formatting, which means:
# Written in formal American English.
# Do not plagiarize.
# Bold text must only be used in the beginning of the article/section of an article for the name of the term and any alternate spellings.
# Italicized text must only be used for titles of books, shows, games or other media.
# Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
# One space/line between paragraphs.
# Add links to any other terms used in the article.
# Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
# Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
# With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
# Do not address the reader.
# Do not add "WIP" or author's notes.
Additionally, personal bias should not be in these articles.
=== Titles ===
Some characters have only a first name and there may be more than one character with the same first and last name, this case, title the page "Character (Media)".
=== Categories ===
If a character identifies with a microlabel, put them in the broad category for that label. For example, if a character is cupiosexual, then they would be put into the "A-Spec Characters" category. This is to keep the wiki less cluttered and to have information be easier to find.
== Sourcing ==
Links should be archived, this is so that we do not lose any information. [https://archive.md/] is a viable place to archive sources, but there are other cites that can be used for archiving sources.
[[Category:Help]] [[Category:Important]]
30060d4871b82e2813f7d3f079e04368b6573936
200
198
2023-08-25T15:17:01Z
CheSnail
2
/* Sourcing */
wikitext
text/x-wiki
== General Editing ==
Pages should follow standard wiki formatting, which means:
# Written in formal American English.
# Do not plagiarize.
# Bold text must only be used in the beginning of the article/section of an article for the name of the term and any alternate spellings.
# Italicized text must only be used for titles of books, shows, games or other media.
# Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
# One space/line between paragraphs.
# Add links to any other terms used in the article.
# Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
# Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
# With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
# Do not address the reader.
# Do not add "WIP" or author's notes.
Additionally, personal bias should not be in these articles.
=== Titles ===
Some characters have only a first name and there may be more than one character with the same first and last name, this case, title the page "Character (Media)".
=== Categories ===
If a character identifies with a microlabel, put them in the broad category for that label. For example, if a character is cupiosexual, then they would be put into the "A-Spec Characters" category. This is to keep the wiki less cluttered and to have information be easier to find.
== Sourcing ==
Links should be archived, this is so that we do not lose any information. https://archive.md/ is a viable place to archive sources, but there are other cites that can be used for archiving sources.
[[Category:Help]] [[Category:Important]]
3b072ef9c998cea1e9dc9d6ddb2710cc8c7e9ee3
Main Page
0
1
199
31
2023-08-25T15:16:22Z
CheSnail
2
wikitext
text/x-wiki
__NOTOC__
== Welcome to {{SITENAME}}! ==
This is a resource for all canonically LGBTQ+ characters throughout fiction.
== Characters by Identity ==
[[:Category:Characters by Identity|Characters by Identity]]
<gallery>
Lesbian flag.png|[[:Category:Lesbian Characters|Lesbian Characters]]
Gay Man flag.png|[[:Category:Gay Characters|Gay Characters]]
Bi flag.png|[[:Category:Bi Characters|Bi Characters]]
Trans flag.png|[[:Category:Trans Characters|Trans Characters]]
Aroace flag.png|[[:Category:Aroace Characters|Aroace Characters]]
Pan flag.png|[[:Category:Pan Characters|Pan Characters]]
Non-Binary flag.png|[[:Category:Non-Binary Characters|Non-Binary Characters]]
</gallery>
== For Contributes ==
Look into these articles if you're looking to help out with the wiki:
* [[Rules]]
* [[Editing Guide]]
* [[Guide:Character]]
eabe1a4682aa0246a8f4a1c58d4428962d47e559
218
199
2023-09-09T00:28:32Z
CheSnail
2
wikitext
text/x-wiki
__NOTOC__
== Welcome to {{SITENAME}}! ==
This is a resource for all canonically LGBTQ+ characters throughout fiction.
== Characters by Identity ==
[[:Category:Characters by Identity|Characters by Identity]]
<gallery>
Lesbian flag.png|[[:Category:Lesbian Characters|Lesbian Characters]]
Gay Man flag.png|[[:Category:Gay Man Characters|Gay Man Characters]]
Bi flag.png|[[:Category:Bi Characters|Bi Characters]]
Trans flag.png|[[:Category:Trans Characters|Trans Characters]]
Aroace flag.png|[[:Category:Aroace Characters|Aroace Characters]]
Pan flag.png|[[:Category:Pan Characters|Pan Characters]]
Non-Binary flag.png|[[:Category:Non-Binary Characters|Non-Binary Characters]]
</gallery>
== For Contributes ==
Look into these articles if you're looking to help out with the wiki:
* [[Rules]]
* [[Editing Guide]]
* [[Guide:Character]]
47a36c8d9e8828227b4144cba5ffea2805836efe
223
218
2023-09-09T18:46:44Z
CheSnail
2
wikitext
text/x-wiki
__NOTOC__
== Welcome to {{SITENAME}}! ==
This is a resource for all canonically LGBTQ+ characters throughout fiction.
== Characters by Identity ==
[[:Category:Characters by Identity|Characters by Identity]]
<gallery>
Gay flag.png|[[:Category:Gay Characters|Gay Characters]]
Lesbian flag.png|[[:Category:Lesbian Characters|Lesbian Characters]]
Gay Man flag.png|[[:Category:Gay Man Characters|Gay Man Characters]]
Bi flag.png|[[:Category:Bi Characters|Bi Characters]]
Trans flag.png|[[:Category:Trans Characters|Trans Characters]]
Aroace flag.png|[[:Category:Aroace Characters|Aroace Characters]]
Pan flag.png|[[:Category:Pan Characters|Pan Characters]]
Non-Binary flag.png|[[:Category:Non-Binary Characters|Non-Binary Characters]]
</gallery>
== For Contributes ==
Look into these articles if you're looking to help out with the wiki:
* [[Rules]]
* [[Editing Guide]]
* [[Guide:Character]]
6cfc5ecfe02028d084a982644098dd35a572a868
Guide:Character
0
98
201
191
2023-08-25T15:56:16Z
CheSnail
2
wikitext
text/x-wiki
The article should begin with a picture of the character.
(Character) is a (label/labels) from (media).
In the second paragraph, describe their role in the story, the actor that portrays them, the first and last episode they appear in, and any other miscellaneous information that feels important/significant.
== Biography ==
Here, include a brief description of the character's life and how their story plays out in the media they're from.
== Personality ==
Here, discuss the character's personality and what they are like within the work.
== Identity ==
Here, explore how the identity was revealed and how it is handled in the work itself. If the identity was revealed outside of the work, discuss how it was revealed and which of the individuals involved in the work spoke about it.
=== Reception ===
In this section, discuss the general and fan response to the character in relation to their identity.
== Gallery ==
Here, you can include any other pictures of the character that feel significant. This can include promotional material, screencaps from the show, or images of the character with the flag of their identity.
<gallery>
Example.jpg
</gallery>
== Trivia ==
* Here, list any trivia about the character.
== See Also ==
* Include a link to any official information about the character
== Tropes ==
* If the character falls into any tropes
* Include them here in a bulleted list
* You should also include a link to more information about the trope itself
[[List of Tropes]] page may be used as a reference.
== Sources ==
This is where your sources will be.
[[Category:Guide]] [[Category:Help]] [[Category:Important]]
c569ae06c679021c23db3f201af43c99caa241c6
203
201
2023-08-25T15:57:37Z
CheSnail
2
wikitext
text/x-wiki
The article should begin with a picture of the character.
(Character) is a (label/labels) from (media).
In the second paragraph, describe their role in the story, the actor that portrays them, the first and last episode they appear in, and any other miscellaneous information that feels important/significant.
== Biography ==
Here, include a brief description of the character's life and how their story plays out in the media they're from.
== Personality ==
Here, discuss the character's personality and what they are like within the work.
== Identity ==
Here, explore how the identity was revealed and how it is handled in the work itself. If the identity was revealed outside of the work, discuss how it was revealed and which of the individuals involved in the work spoke about it.
=== Reception ===
In this section, discuss the general and fan response to the character in relation to their identity.
== Gallery ==
Here, you can include any other pictures of the character that feel significant. This can include promotional material, screencaps from the show, or images of the character with the flag of their identity.
<gallery>
Example.jpg
</gallery>
== Trivia ==
* Here, list any trivia about the character.
== See Also ==
* Include a link to any official information about the character
== Tropes ==
* If the character falls into any tropes
* Include them here in a bulleted list
* You should also include a link to more information about the trope itself
[[List of Tropes]] page may be used as a reference.
== Sources ==
This is where your sources will be.
[[Category:Guides]] [[Category:Help]] [[Category:Important]]
936fe5cb3a459506f168bd59cdb970130367cd10
207
203
2023-08-27T15:50:05Z
CheSnail
2
wikitext
text/x-wiki
The article should begin with a picture of the character.
(Character) is a (label/labels) character from (media).
In the second paragraph, describe their role in the story, the actor that portrays them, the first and last episode they appear in, and any other miscellaneous information that feels important/significant.
== Biography ==
Here, include a brief description of the character's life and how their story plays out in the media they're from.
== Personality ==
Here, discuss the character's personality and what they are like within the work.
== Identity ==
Here, explore how the identity was revealed and how it is handled in the work itself. If the identity was revealed outside of the work, discuss how it was revealed and which of the individuals involved in the work spoke about it.
=== Reception ===
In this section, discuss the general and fan response to the character in relation to their identity.
== Gallery ==
Here, you can include any other pictures of the character that feel significant. This can include promotional material, screencaps from the show, or images of the character with the flag of their identity.
<gallery>
Example.jpg
</gallery>
== Trivia ==
* Here, list any trivia about the character.
== See Also ==
* Include a link to any official information about the character
== Tropes ==
* If the character falls into any tropes
* Include them here in a bulleted list
* You should also include a link to more information about the trope itself
[[List of Tropes]] page may be used as a reference.
== Sources ==
This is where your sources will be.
[[Category:Guides]] [[Category:Help]] [[Category:Important]]
767d279a4db07bed6d058dcd2a67d4a208179442
Category:Guides
14
99
202
192
2023-08-25T15:57:14Z
CheSnail
2
CheSnail moved page [[Category:Guide]] to [[Category:Guides]] without leaving a redirect
wikitext
text/x-wiki
This category is for all page guides.
10f53b20fe76641a8f162431f845398c8b522f7e
User:CheSnail
2
2
204
196
2023-08-26T01:29:23Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
* [[Raegan Marlow]] (Nightfall)
** Quoiattraction
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
d240fd65aa00f58a5cff215fbeef8fed17c11c84
205
204
2023-08-26T01:29:44Z
CheSnail
2
/* My Questioning Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
713e4b562c3e443842234a2352563bad9edf1594
206
205
2023-08-27T04:24:06Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
c055caad11f2e02556bbd4fdd868dbc21c854513
208
206
2023-08-29T00:47:46Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
1f9485c74a728a9925806a30f69d7b33ea32085c
209
208
2023-08-30T00:35:15Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
24e78b0f5962e6d6298c8b32d31148b245fcbbe1
210
209
2023-08-31T00:34:50Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
52c1d1e4cb304847b9ed657df32b887c9d7a0e0e
211
210
2023-09-04T23:47:53Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
0aeba941cd97d8fecd38f5eb2b0d9ef016203685
212
211
2023-09-05T01:38:10Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
8cc9e6984dbe394ec0c0e7aa2a2caf4b0e5f809b
215
212
2023-09-06T00:46:49Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
4cf55e47e7c3b2bf3a16ba73535cc93dbd52c2ba
216
215
2023-09-07T01:52:14Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
ed064e035ade18562245997bb2e96c464f0ed32a
217
216
2023-09-08T01:01:56Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Characters ===
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Paul Stamets]]
* [[Hugh Culber]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Camile Wray]]
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
e13d9e5480ffd7d1ed74adb9b62661e8dbd8cd21
220
217
2023-09-09T00:40:10Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
62bca8ca5808b13b6078124e0c80e96975be85b2
221
220
2023-09-09T00:40:51Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
516022ea4e355efb326f4a2c82431d4c40b54631
227
221
2023-09-10T00:34:50Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
f0292d8b3bc1da8d041b75e9df436fd4f90266f8
229
227
2023-09-13T12:39:41Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
7af975567c09cf95b0a11f24a1ea5bd0330bcdeb
230
229
2023-09-14T01:07:33Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
80afa47740f0a64b979190a97a0eb1ba6634ec6a
231
230
2023-09-15T00:08:42Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Malcolm Reed (Star Trek: Enterprise)
* Gay
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Tam Kadosh]] (Neon Apocalypse)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]] (Neon Apocalypse)
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
32856a1f2e0fe630a2913834a17e8f1e840a201e
Rules
0
18
213
32
2023-09-05T01:52:47Z
CheSnail
2
/* Allowed Content */
wikitext
text/x-wiki
== Code of Conduct ==
# Keep personal bias out of the articles you're editing. Do not make any comments about your personal dislike of a character or your opinion about a certain identity.
# Articles should be written in a standard wiki format. This means:
## Written in formal American English.
## Do not plagiarize.
## Bold text must only be used in the beginning of the article for the character's name.
## Italicized text must only be used for titles of books, shows, games or other media.
## Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
## One space/line between paragraphs.
## Add links to any other characters included on the wiki used in the article.
## Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
## Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
## With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
## Do not address the reader.
## Do not add "WIP" or author's notes.
# Do not impersonate another user.
# No troll or satirical edits.
# Do not post false or misleading information.
# Do not post spam.
# Do not make queerphobic, ableist, racist, or sexist comments.
== Content Policy ==
=== Allowed Content ===
* Characters confirmed to be queer within the work itself.
* Characters confirmed to be queer by the creator outside of the work.
* Characters confirmed to be queer by the actor of the character outside of the work.
* Characters confirmed to be queer by a writer outside of the work.
** However, writers can have conflicting/different ideas about a character, if this is the case, include which writer confirmed what.
** All characters confirmed outside of the work itself must be categorized under "Word of Gay".
* Web characters, as long as they are fictional.
* You may add your original characters '''only''' if you have them/are planning to have them in a serious work, such as a book, webseries or comic. This does not extend to fan-characters
=== Prohibited Content ===
* Headcanons, as these are up to interpretation.
* Real individuals, this includes fictionalized versions of real individuals, such as depictions of Elton John.
* Queercoded characters, as these characters are not meant to be explicitly queer.
[[Category:Help]] [[Category:Important]]
b9fa7bc9a438a0c13b38f180ab5ecef53d588692
214
213
2023-09-05T01:53:38Z
CheSnail
2
/* Prohibited Content */
wikitext
text/x-wiki
== Code of Conduct ==
# Keep personal bias out of the articles you're editing. Do not make any comments about your personal dislike of a character or your opinion about a certain identity.
# Articles should be written in a standard wiki format. This means:
## Written in formal American English.
## Do not plagiarize.
## Bold text must only be used in the beginning of the article for the character's name.
## Italicized text must only be used for titles of books, shows, games or other media.
## Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
## One space/line between paragraphs.
## Add links to any other characters included on the wiki used in the article.
## Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
## Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
## With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
## Do not address the reader.
## Do not add "WIP" or author's notes.
# Do not impersonate another user.
# No troll or satirical edits.
# Do not post false or misleading information.
# Do not post spam.
# Do not make queerphobic, ableist, racist, or sexist comments.
== Content Policy ==
=== Allowed Content ===
* Characters confirmed to be queer within the work itself.
* Characters confirmed to be queer by the creator outside of the work.
* Characters confirmed to be queer by the actor of the character outside of the work.
* Characters confirmed to be queer by a writer outside of the work.
** However, writers can have conflicting/different ideas about a character, if this is the case, include which writer confirmed what.
** All characters confirmed outside of the work itself must be categorized under "Word of Gay".
* Web characters, as long as they are fictional.
* You may add your original characters '''only''' if you have them/are planning to have them in a serious work, such as a book, webseries or comic. This does not extend to fan-characters
=== Prohibited Content ===
* Headcanons, as these are up to interpretation.
* Real individuals, this includes fictionalized versions of real individuals, such as depictions of Elton John.
* Queercoded characters, as these characters are not meant to be explicitly queer.
* Fan-characters. Original characters from an existing media are not allowed.
[[Category:Help]] [[Category:Important]]
609817274a24302698ee9d3ac87e5544529023f7
Category:Gay Man Characters
14
11
219
25
2023-09-09T00:28:47Z
CheSnail
2
CheSnail moved page [[Category:Gay Characters]] to [[Category:Gay Man Characters]] without leaving a redirect
wikitext
text/x-wiki
[[File:Gay Man flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
8e93a2d500a53f51e3fafe3c8b9de12b3f67d530
File:Gay flag.png
6
102
222
2023-09-09T18:46:19Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Category:Gay Characters
14
103
224
2023-09-09T18:47:29Z
CheSnail
2
Created page with "[[File:Gay flag.png|frameless|center|200px]] [[Category:Characters by Identity]]"
wikitext
text/x-wiki
[[File:Gay flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
1d99ae0ef0fa4ff256b0c6a2e2854d5e8d4d2fe5
List of Tropes
0
104
225
2023-09-09T20:04:08Z
CheSnail
2
Created page with "These are tropes that often have to do with queer characters. There are other tropes that follow straight characters or a piece of media as a whole, but they are not included on this page because they do not apply to this wiki. It is important to note that a trope is not inherently bad or harmful. While this list may contain tropes that are damaging, not every trope on here is played for laughs. There may be tropes on this list created by queer individuals to show queer..."
wikitext
text/x-wiki
These are tropes that often have to do with queer characters. There are other tropes that follow straight characters or a piece of media as a whole, but they are not included on this page because they do not apply to this wiki.
It is important to note that a trope is not inherently bad or harmful. While this list may contain tropes that are damaging, not every trope on here is played for laughs. There may be tropes on this list created by queer individuals to show queer characters in a positive light, and some tropes may be neutral and depend purely on how they're portrayed.
== Queer Tropes ==
=== Adaptional Gender Identity ===
'''Adaptional Gender Identity''' is when a character's gender alignment changes in an adaption, for example, cisgender to transgender. This will often happen because of the creator's own experience, if the actor playing the character is trans, or the writer writing the character is trans. This can also happen from the Trans Audience Interpretation becoming canon, of if a character with an Ambiguous Gender Identity is now explicitly a certain label.
=== Adaptional Sexuality ===
'''Adaptional Sexuality''' is when a character's sexuality is altered in an adaptation. This includes making a gay character straight, giving a sex life to a previously asexual character, putting an aromantic character into a romantic relationship, making a straight character gay, or any other variation.
=== Agent Peacock ===
'''Agent Peacock''' is a male character who is a badass, sensitive guy. They're often campy, vain and are often very pretty, but they are also quite powerful and effective at what they do. These characters can be of any sexuality, good or evil, and played for laughs or taken seriously.
=== Armored Closet Gay ===
'''Armored Closet Gay''', also known as the '''Closeted Homophobe''', is when a character is very vocal, and sometimes violent, about their hatred of queer individuals. They will remind everyone that they are completely straight. However, this character is queer themselves and hides that behind a macho, homophobic façade.
=== The Bear ===
'''The Bear''' is in reference to the subculture among gay men that include manly, hairy gay men. Usually, they are also on the heavier side and, in the media, are middle-aged. They don't often appear in mainstream media.
=== Big Beautiful Man ===
'''Big Beautiful Man''' is similar to The Bear, but has more to do with making noticeably chubby or obese characters genuinely beautiful and attractive. While not exclusive to gay characters, it is very common within gay media.
=== Butch Lesbian ===
'''Butch Lesbian''' applies to a more masculine lesbian character. They'll typically have a short haircut, work a stereotypically male job, are taller than their feminine counterpart, and wear conventionally unfeminine attire. There may also be times where the character is mistaken for a man, by other characters and by the audience. This is in reference to the femme/butch subculture within the queer community.
=== But Not Too Bi ===
'''But Not Too Bi''' is when a character's bisexuality is told to the audience, but is never portrayed. They're always exclusively paired up with either the opposite gender or the same gender, depending on the media.
=== Camp Gay ===
'''Camp Gay''' applies to feminine gay men. This can be from how they dress, how they speak, their mannerisms or their interests. These characters are often portrayed as caricatures or one-off jokes, even in media created by gay individuals.
=== Campy Combat ===
'''Campy Combat''' is when a camp character is flamboyant in appearing and demeanor, but can hold themselves in a fight. However, unlike the Agent Peacock, the campy combat will still fight in a typically campy and flamboyant manner.
=== Closet Gay ===
'''Closet Gay''' is when a queer character hides the fact that they are queer. This is a real experience for many queer individuals, where someone is in the closet for many reasons.
=== Closet Key ===
'''Closet Key''' is the character who helps another character realize their own sexuality. Typically, the closet key is also queer.
=== Club Kid ===
'''Club Kid''' is typically when all negative stereotypes of a gay individual is combined. They exhibit what most individuals think is the "gay lifestyle."
=== Creepy Crossdresser ===
'''Creepy Crossdresser''' is a character whose gender non-conforming nature is seen as inherently wicked, creepy and is portrayed for shock value or to show that the character is evil or deranged. This tripe is virtually always applied to male characters.
=== Crossdresser ===
'''Crossdresser''' is when a character dresses in the clothing of the opposite gender.
=== Depraved Bisexual ===
'''Depraved Bisexual''' is a character in which their bisexual is portrayed as inherently dangerous. This character is typically shown to not consider any relationship as taboo because they are bisexual. This trope depicts bisexual individuals as extremely manipulative. Interestingly enough, several instances of this trope in TV are mirror universe versions, to show how evil and different they are from the original character.
=== Depraved Homosexual ===
'''Depraved Homosexual''' is similar to the Depraved Bisexual. This trope usually comes with a Camp Gay villain or a Manly Gay who is a sexual predator. A big motive for these characters is unrequited love.
=== Drag Queen ===
'''Drag Queen''' is a character who dresses is an exaggerated feminine gender expression for entertainment. These characters are usually also the Camp Gay. The more masculine counterpart is a '''Drag King'''.
=== Extreme Omnisexual ===
'''Extreme Omnisexual''' is when a character would, could and has had relationships with literally anything. This character doesn't only chase after human and humanoid species, but also chases after other species, robots, or even animals and inanimate objects.
=== Flaming Devil ===
'''Flaming Devil''' is the implicit or explicit portrayal of a gay Satan, sometimes literally and sometimes portraying another demon or demon-like character.
=== Gay Best Friend ===
'''Gay Best Friend''', or '''GBF''', is when a gay character exists mostly to be funny and sometimes show political correctness. They're depicted to be interested in shopping, fashion and makeovers. Typically, this character never has an on-screen romance. This is not if a typical best friend character happens to be gay.
=== Gay Conservative ===
'''Gay Conservative''' is a character who is gay and conservative, typically in a setting where the two ideas are somewhat incompatible. This is usually done for drama, to imply a gay person cannot be conservative without being a traitor to their sexuality, for tokenism, to defend conservative ideologies, or to be satire.
=== Gay Cowboy ===
'''Gay Cowboy'''is a gay man who is from a Western genre, or is simply a fan of the genre and acts according to cowboy aesthetics.
=== Gayngster ===
'''Gayngster''' is a gay character who is involved in organized crime.
=== Gym Bunny ===
'''Gym Bunny''' is a gay man who is constantly working out. This is typically not to stay healthy, but rather an attempt to hold his youthful looks for as long as possible. Outside of the media, this term is generally used as an insult within the gay community.
=== Have I Mentioned I Am Gay? ===
'''Have I Mentioned I Am Gay?''' is when a gay character constantly states that they are gay, but the audience is never shown that they are. The audience will never see them display any romantic and/or sexual attraction towards characters of the same gender, nor will the audience see them go on dates with someone of the same gender, or ever have sex.
=== Leatherman ===
'''Leatherman''' is a gay man who wears leather. This is a subculture within the LGBTQ+ community in real life, with historical roots in the BDSM community and biker culture. The lesbian counterpart is typically called '''Leatherdyke'''.
=== Lesbian Jock ===
'''Lesbian Jock''' is a lesbian character who plays sports. This could also be the assumption that all women who play sports are lesbian.
=== Lesbian Vampire ===
'''Lesbian Vampire''' is a lesbian character who preys on young women. While this is typically shown as a woman vampire who turns young women into vampires, it could also play out as a young woman being turned into a vampire and suddenly feeling sexual attraction towards other women.
=== Lipstick Lesbian ===
'''Lipstick Lesbian''' is a traditionally feminine lesbian character. This is related to the femme/butch subcultures within the LGBTQ+ community.
=== Macho Camp ===
'''Macho Camp''' is when a Camp Gay character is large and muscular.
=== Magical Queer ===
'''Magical Queer''' is when a character has all of the wisdom in the world because they are gay, and have been persecuted for it. This character is often a Camp Gay or Drag Queen. They tend to be an expert on heterosexual relationships and often don't have a romance of their own.
=== Manly Gay ===
'''Manly Gay''' is a gay character who has no camp or feminine traits, and is purely masculine.
=== Mentor in Queerness ===
'''Mentor in Queerness''' is an older character who is out, proud and confident, and helps a younger character navigate their troubles, specifically about their queer identity.
=== The Pastor's Queer Kid ===
'''The Pastor's Queer Kid''' is when a queer character is the child of a pastor or any other religious figure. This may also apply if the character simply has very religious parents.
=== Performance Artist ===
'''Performance Artist''' is a flamboyant character who loves acting, singing or performing in general. They love the spotlight, have memorized every line from their favorite music, took modern dance or ballet at some point, and are trying to break into Broadway or theatre in general.
=== Psycho Lesbian ===
'''Psycho Lesbian''' is a lesbian character who is described as mentally unstable, villainous or otherwise dangerous because they're a lesbian. Often they are covetous of other women and hateful towards men only because they are taking away too many potential mates. This character, like the Depraved Homosexual, is often motivated by unrequited love.
=== Queer Character, Queer Actor ===
'''Queer Character, Queer Actor''' is when the actor cast to play a queer character is also queer themselves. Typically, this is for an actor who identifies the same way their character does, but that is not always the case.
=== Rape and Switch ===
'''Rape and Switch''' is when it is stated or implied that a character is gay because of sexual assault. With this trope, both male and female victims exhibit the same response to sexual assault, to become attracted to the same gender.
=== Sissy Villain ===
'''Sissy Villain''' is when a villainous character is shown to be villainous because of their feminine traits.
=== Token Lesbian ===
'''Token Lesbian''' is a lesbian character in a work with a predominantly gay men cast. The work may include their girlfriend, but that isn't common. If the character is the only queer person in the show, they are the '''Token Queer''' instead of the Token Lesbian.
=== Trans Character, Cis Actor ===
'''Trans Character, Cis Actor''' is when a cisgender actor is cast to play a transgender character. Often times, the cis actor does not align with the gender the character identities as, which may imply that trans individuals are just crossdressing. Cis women playing trans women and cis men playing trans men tend to be better received, but still face criticism.
=== Transgender Fetishization ===
'''Transgender Fetishization''' is when a transgender character is hypersexualized because they are transgender. Sometimes, the character being sexualized is the result of a joke, or is not treated seriously.
=== Transparent Closet ===
'''Transparent Closet''' is when everyone knows that a character is gay before the character knows themselves, or before a character has come out.
=== The Twink ===
'''The Twink''' is a young gay man who is sterotypically thin with minimal facial and body hair. Their clothing style is typically on the preppy side as well.
=== Word of Gay ===
'''Word of Gay''' is when the creator, or another individual who worked greatly on the piece of media, confirms a character as queer outside of the work itself. Often, the character is never shown to be queer in the work, some characters may have never even been hinted at being queer.
[[Category:Help]] [[Category:Important]]
92bad2f19714feb9f481f1341854e80265f7d202
226
225
2023-09-09T23:00:14Z
CheSnail
2
wikitext
text/x-wiki
These are tropes that often have to do with queer characters. There are other tropes that follow straight characters or a piece of media as a whole, but they are not included on this page because they do not apply to this wiki.
It is important to note that a trope is not inherently bad or harmful. While this list may contain tropes that are damaging, not every trope on here is played for laughs. There may be tropes on this list created by queer individuals to show queer characters in a positive light, and some tropes may be neutral and depend purely on how they're portrayed.
== Queer Tropes ==
=== Adaptional Gender Identity ===
'''Adaptional Gender Identity''' is when a character's gender alignment changes in an adaption, for example, cisgender to transgender. This will often happen because of the creator's own experience, if the actor playing the character is trans, or the writer writing the character is trans. This can also happen from the Trans Audience Interpretation becoming canon, of if a character with an Ambiguous Gender Identity is now explicitly a certain label.<ref>[https://archive.ph/NDDzf https://tvtropes.org/pmwiki/pmwiki.php/Main/AdaptationalGenderIdentity]</ref>
=== Adaptional Sexuality ===
'''Adaptional Sexuality''' is when a character's sexuality is altered in an adaptation. This includes making a gay character straight, giving a sex life to a previously asexual character, putting an aromantic character into a romantic relationship, making a straight character gay, or any other variation.
=== Agent Peacock ===
'''Agent Peacock''' is a male character who is a badass, sensitive guy. They're often campy, vain and are often very pretty, but they are also quite powerful and effective at what they do. These characters can be of any sexuality, good or evil, and played for laughs or taken seriously.
=== Armored Closet Gay ===
'''Armored Closet Gay''', also known as the '''Closeted Homophobe''', is when a character is very vocal, and sometimes violent, about their hatred of queer individuals. They will remind everyone that they are completely straight. However, this character is queer themselves and hides that behind a macho, homophobic façade.
=== The Bear ===
'''The Bear''' is in reference to the subculture among gay men that include manly, hairy gay men. Usually, they are also on the heavier side and, in the media, are middle-aged. They don't often appear in mainstream media.
=== Big Beautiful Man ===
'''Big Beautiful Man''' is similar to The Bear, but has more to do with making noticeably chubby or obese characters genuinely beautiful and attractive. While not exclusive to gay characters, it is very common within gay media.
=== Butch Lesbian ===
'''Butch Lesbian''' applies to a more masculine lesbian character. They'll typically have a short haircut, work a stereotypically male job, are taller than their feminine counterpart, and wear conventionally unfeminine attire. There may also be times where the character is mistaken for a man, by other characters and by the audience. This is in reference to the femme/butch subculture within the queer community.
=== But Not Too Bi ===
'''But Not Too Bi''' is when a character's bisexuality is told to the audience, but is never portrayed. They're always exclusively paired up with either the opposite gender or the same gender, depending on the media.
=== Camp Gay ===
'''Camp Gay''' applies to feminine gay men. This can be from how they dress, how they speak, their mannerisms or their interests. These characters are often portrayed as caricatures or one-off jokes, even in media created by gay individuals.
=== Campy Combat ===
'''Campy Combat''' is when a camp character is flamboyant in appearing and demeanor, but can hold themselves in a fight. However, unlike the Agent Peacock, the campy combat will still fight in a typically campy and flamboyant manner.
=== Closet Gay ===
'''Closet Gay''' is when a queer character hides the fact that they are queer. This is a real experience for many queer individuals, where someone is in the closet for many reasons.
=== Closet Key ===
'''Closet Key''' is the character who helps another character realize their own sexuality. Typically, the closet key is also queer.
=== Club Kid ===
'''Club Kid''' is typically when all negative stereotypes of a gay individual is combined. They exhibit what most individuals think is the "gay lifestyle."
=== Creepy Crossdresser ===
'''Creepy Crossdresser''' is a character whose gender non-conforming nature is seen as inherently wicked, creepy and is portrayed for shock value or to show that the character is evil or deranged. This tripe is virtually always applied to male characters.
=== Crossdresser ===
'''Crossdresser''' is when a character dresses in the clothing of the opposite gender.
=== Depraved Bisexual ===
'''Depraved Bisexual''' is a character in which their bisexual is portrayed as inherently dangerous. This character is typically shown to not consider any relationship as taboo because they are bisexual. This trope depicts bisexual individuals as extremely manipulative. Interestingly enough, several instances of this trope in TV are mirror universe versions, to show how evil and different they are from the original character.
=== Depraved Homosexual ===
'''Depraved Homosexual''' is similar to the Depraved Bisexual. This trope usually comes with a Camp Gay villain or a Manly Gay who is a sexual predator. A big motive for these characters is unrequited love.
=== Drag Queen ===
'''Drag Queen''' is a character who dresses is an exaggerated feminine gender expression for entertainment. These characters are usually also the Camp Gay. The more masculine counterpart is a '''Drag King'''.
=== Extreme Omnisexual ===
'''Extreme Omnisexual''' is when a character would, could and has had relationships with literally anything. This character doesn't only chase after human and humanoid species, but also chases after other species, robots, or even animals and inanimate objects.
=== Flaming Devil ===
'''Flaming Devil''' is the implicit or explicit portrayal of a gay Satan, sometimes literally and sometimes portraying another demon or demon-like character.
=== Gay Best Friend ===
'''Gay Best Friend''', or '''GBF''', is when a gay character exists mostly to be funny and sometimes show political correctness. They're depicted to be interested in shopping, fashion and makeovers. Typically, this character never has an on-screen romance. This is not if a typical best friend character happens to be gay.
=== Gay Conservative ===
'''Gay Conservative''' is a character who is gay and conservative, typically in a setting where the two ideas are somewhat incompatible. This is usually done for drama, to imply a gay person cannot be conservative without being a traitor to their sexuality, for tokenism, to defend conservative ideologies, or to be satire.
=== Gay Cowboy ===
'''Gay Cowboy'''is a gay man who is from a Western genre, or is simply a fan of the genre and acts according to cowboy aesthetics.
=== Gayngster ===
'''Gayngster''' is a gay character who is involved in organized crime.
=== Gym Bunny ===
'''Gym Bunny''' is a gay man who is constantly working out. This is typically not to stay healthy, but rather an attempt to hold his youthful looks for as long as possible. Outside of the media, this term is generally used as an insult within the gay community.
=== Have I Mentioned I Am Gay? ===
'''Have I Mentioned I Am Gay?''' is when a gay character constantly states that they are gay, but the audience is never shown that they are. The audience will never see them display any romantic and/or sexual attraction towards characters of the same gender, nor will the audience see them go on dates with someone of the same gender, or ever have sex.
=== Leatherman ===
'''Leatherman''' is a gay man who wears leather. This is a subculture within the LGBTQ+ community in real life, with historical roots in the BDSM community and biker culture. The lesbian counterpart is typically called '''Leatherdyke'''.
=== Lesbian Jock ===
'''Lesbian Jock''' is a lesbian character who plays sports. This could also be the assumption that all women who play sports are lesbian.
=== Lesbian Vampire ===
'''Lesbian Vampire''' is a lesbian character who preys on young women. While this is typically shown as a woman vampire who turns young women into vampires, it could also play out as a young woman being turned into a vampire and suddenly feeling sexual attraction towards other women.
=== Lipstick Lesbian ===
'''Lipstick Lesbian''' is a traditionally feminine lesbian character. This is related to the femme/butch subcultures within the LGBTQ+ community.
=== Macho Camp ===
'''Macho Camp''' is when a Camp Gay character is large and muscular.
=== Magical Queer ===
'''Magical Queer''' is when a character has all of the wisdom in the world because they are gay, and have been persecuted for it. This character is often a Camp Gay or Drag Queen. They tend to be an expert on heterosexual relationships and often don't have a romance of their own.
=== Manly Gay ===
'''Manly Gay''' is a gay character who has no camp or feminine traits, and is purely masculine.
=== Mentor in Queerness ===
'''Mentor in Queerness''' is an older character who is out, proud and confident, and helps a younger character navigate their troubles, specifically about their queer identity.
=== The Pastor's Queer Kid ===
'''The Pastor's Queer Kid''' is when a queer character is the child of a pastor or any other religious figure. This may also apply if the character simply has very religious parents.
=== Performance Artist ===
'''Performance Artist''' is a flamboyant character who loves acting, singing or performing in general. They love the spotlight, have memorized every line from their favorite music, took modern dance or ballet at some point, and are trying to break into Broadway or theatre in general.
=== Psycho Lesbian ===
'''Psycho Lesbian''' is a lesbian character who is described as mentally unstable, villainous or otherwise dangerous because they're a lesbian. Often they are covetous of other women and hateful towards men only because they are taking away too many potential mates. This character, like the Depraved Homosexual, is often motivated by unrequited love.
=== Queer Character, Queer Actor ===
'''Queer Character, Queer Actor''' is when the actor cast to play a queer character is also queer themselves. Typically, this is for an actor who identifies the same way their character does, but that is not always the case.
=== Rape and Switch ===
'''Rape and Switch''' is when it is stated or implied that a character is gay because of sexual assault. With this trope, both male and female victims exhibit the same response to sexual assault, to become attracted to the same gender.
=== Sissy Villain ===
'''Sissy Villain''' is when a villainous character is shown to be villainous because of their feminine traits.
=== Token Lesbian ===
'''Token Lesbian''' is a lesbian character in a work with a predominantly gay men cast. The work may include their girlfriend, but that isn't common. If the character is the only queer person in the show, they are the '''Token Queer''' instead of the Token Lesbian.
=== Trans Character, Cis Actor ===
'''Trans Character, Cis Actor''' is when a cisgender actor is cast to play a transgender character. Often times, the cis actor does not align with the gender the character identities as, which may imply that trans individuals are just crossdressing. Cis women playing trans women and cis men playing trans men tend to be better received, but still face criticism.
=== Transgender Fetishization ===
'''Transgender Fetishization''' is when a transgender character is hypersexualized because they are transgender. Sometimes, the character being sexualized is the result of a joke, or is not treated seriously.
=== Transparent Closet ===
'''Transparent Closet''' is when everyone knows that a character is gay before the character knows themselves, or before a character has come out.
=== The Twink ===
'''The Twink''' is a young gay man who is sterotypically thin with minimal facial and body hair. Their clothing style is typically on the preppy side as well.
=== Word of Gay ===
'''Word of Gay''' is when the creator, or another individual who worked greatly on the piece of media, confirms a character as queer outside of the work itself. Often, the character is never shown to be queer in the work, some characters may have never even been hinted at being queer.
== Sources ==
<references />
[[Category:Help]] [[Category:Important]]
fb9e3d2530512e9b69367bfc62d373586a67024b
228
226
2023-09-10T04:57:09Z
CheSnail
2
wikitext
text/x-wiki
These are tropes that often have to do with queer characters. There are other tropes that follow straight characters or a piece of media as a whole, but they are not included on this page because they do not apply to this wiki.
It is important to note that a trope is not inherently bad or harmful. While this list may contain tropes that are damaging, not every trope on here is played for laughs. There may be tropes on this list created by queer individuals to show queer characters in a positive light, and some tropes may be neutral and depend purely on how they're portrayed.
== Queer Tropes ==
=== Adaptional Gender Identity ===
'''Adaptional Gender Identity''' is when a character's gender alignment changes in an adaption, for example, cisgender to transgender. This will often happen because of the creator's own experience, if the actor playing the character is trans, or the writer writing the character is trans. This can also happen from the Trans Audience Interpretation becoming canon, of if a character with an Ambiguous Gender Identity is now explicitly a certain label.<ref>[https://archive.ph/NDDzf https://tvtropes.org/pmwiki/pmwiki.php/Main/AdaptationalGenderIdentity]</ref>
=== Adaptional Sexuality ===
'''Adaptional Sexuality''' is when a character's sexuality is altered in an adaptation. This includes making a gay character straight, giving a sex life to a previously asexual character, putting an aromantic character into a romantic relationship, making a straight character gay, or any other variation.<ref>[https://archive.ph/42cLA https://tvtropes.org/pmwiki/pmwiki.php/Main/AdaptationalSexuality]</ref>
=== Agent Peacock ===
'''Agent Peacock''' is a male character who is a badass, sensitive guy. They're often campy, vain and are often very pretty, but they are also quite powerful and effective at what they do. These characters can be of any sexuality, good or evil, and played for laughs or taken seriously.<ref>[https://archive.ph/nDu3L https://tvtropes.org/pmwiki/pmwiki.php/Main/AgentPeacock]</ref>
=== Armored Closet Gay ===
'''Armored Closet Gay''', also known as the '''Closeted Homophobe''', is when a character is very vocal, and sometimes violent, about their hatred of queer individuals. They will remind everyone that they are completely straight. However, this character is queer themselves and hides that behind a macho, homophobic façade.<ref>[https://archive.ph/qmKbn https://tvtropes.org/pmwiki/pmwiki.php/Main/ArmouredClosetGay]</ref>
=== The Bear ===
'''The Bear''' is in reference to the subculture among gay men that include manly, hairy gay men. Usually, they are also on the heavier side and, in the media, are middle-aged. They don't often appear in mainstream media.<ref>[https://archive.ph/wdKye https://tvtropes.org/pmwiki/pmwiki.php/Main/TheBear]</ref>
=== Big Beautiful Man ===
'''Big Beautiful Man''' is similar to The Bear, but has more to do with making noticeably chubby or obese characters genuinely beautiful and attractive. While not exclusive to gay characters, it is very common within gay media.<ref>[https://archive.ph/j8rMq https://tvtropes.org/pmwiki/pmwiki.php/Main/BigBeautifulMan]</ref>
=== Butch Lesbian ===
'''Butch Lesbian''' applies to a more masculine lesbian character. They'll typically have a short haircut, work a stereotypically male job, are taller than their feminine counterpart, and wear conventionally unfeminine attire. There may also be times where the character is mistaken for a man, by other characters and by the audience. This is in reference to the femme/butch subculture within the queer community.<ref>[https://archive.ph/E4Dsb https://tvtropes.org/pmwiki/pmwiki.php/Main/ButchLesbian]</ref>
=== But Not Too Bi ===
'''But Not Too Bi''' is when a character's bisexuality is told to the audience, but is never portrayed. They're always exclusively paired up with either the opposite gender or the same gender, depending on the media.<ref>[https://archive.ph/EhkHz https://tvtropes.org/pmwiki/pmwiki.php/Main/ButNotTooBi]</ref>
=== Camp Gay ===
'''Camp Gay''' applies to feminine gay men. This can be from how they dress, how they speak, their mannerisms or their interests. These characters are often portrayed as caricatures or one-off jokes, even in media created by gay individuals.<ref>[https://archive.ph/zDK0E https://tvtropes.org/pmwiki/pmwiki.php/Main/CampGay]</ref>
=== Campy Combat ===
'''Campy Combat''' is when a camp character is flamboyant in appearing and demeanor, but can hold themselves in a fight. However, unlike the Agent Peacock, the campy combat will still fight in a typically campy and flamboyant manner.<ref>[https://archive.ph/7US3i https://tvtropes.org/pmwiki/pmwiki.php/Main/CampyCombat]</ref>
=== Closet Gay ===
'''Closet Gay''' is when a queer character hides the fact that they are queer. This is a real experience for many queer individuals, where someone is in the closet for many reasons.<ref>[https://archive.ph/wWLjW https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetGay]</ref>
=== Closet Key ===
'''Closet Key''' is the character who helps another character realize their own sexuality. Typically, the closet key is also queer.<ref>[https://archive.ph/DTe0s https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetKey]</ref>
=== Club Kid ===
'''Club Kid''' is typically when all negative stereotypes of a gay individual is combined. They exhibit what most individuals think is the "gay lifestyle."<ref>[https://archive.ph/9xeJB https://tvtropes.org/pmwiki/pmwiki.php/Main/ClubKid]</ref>
=== Creepy Crossdresser ===
'''Creepy Crossdresser''' is a character whose gender non-conforming nature is seen as inherently wicked, creepy and is portrayed for shock value or to show that the character is evil or deranged. This tripe is virtually always applied to male characters.<ref>[https://archive.ph/94wQq https://tvtropes.org/pmwiki/pmwiki.php/Main/CreepyCrossdresser]</ref>
=== Crossdresser ===
'''Crossdresser''' is when a character dresses in the clothing of the opposite gender.<ref>[https://archive.ph/F1mf8 https://tvtropes.org/pmwiki/pmwiki.php/Main/Crossdresser]</ref>
=== Depraved Bisexual ===
'''Depraved Bisexual''' is a character in which their bisexual is portrayed as inherently dangerous. This character is typically shown to not consider any relationship as taboo because they are bisexual. This trope depicts bisexual individuals as extremely manipulative. Interestingly enough, several instances of this trope in TV are mirror universe versions, to show how evil and different they are from the original character.<ref>[https://archive.ph/osf9t https://tvtropes.org/pmwiki/pmwiki.php/Main/DepravedBisexual]</ref>
=== Depraved Homosexual ===
'''Depraved Homosexual''' is similar to the Depraved Bisexual. This trope usually comes with a Camp Gay villain or a Manly Gay who is a sexual predator. A big motive for these characters is unrequited love.<ref>[https://archive.ph/onvH5 https://tvtropes.org/pmwiki/pmwiki.php/Main/DepravedHomosexual]</ref>
=== Drag Queen ===
'''Drag Queen''' is a character who dresses is an exaggerated feminine gender expression for entertainment. These characters are usually also the Camp Gay. The more masculine counterpart is a '''Drag King'''.<ref>[https://archive.ph/EtXrg https://tvtropes.org/pmwiki/pmwiki.php/Main/DragQueen]</ref>
=== Extreme Omnisexual ===
'''Extreme Omnisexual''' is when a character would, could and has had relationships with literally anything. This character doesn't only chase after human and humanoid species, but also chases after other species, robots, or even animals and inanimate objects.<ref>[https://archive.ph/2WyC2 https://tvtropes.org/pmwiki/pmwiki.php/Main/ExtremeOmnisexual]</ref>
=== Flaming Devil ===
'''Flaming Devil''' is the implicit or explicit portrayal of a gay Satan, sometimes literally and sometimes portraying another demon or demon-like character.<ref>[https://archive.ph/89ZQ3 https://tvtropes.org/pmwiki/pmwiki.php/Main/FlamingDevil]</ref>
=== Gay Best Friend ===
'''Gay Best Friend''', or '''GBF''', is when a gay character exists mostly to be funny and sometimes show political correctness. They're depicted to be interested in shopping, fashion and makeovers. Typically, this character never has an on-screen romance. This is not if a typical best friend character happens to be gay.<ref>[https://archive.ph/Imlb1 https://tvtropes.org/pmwiki/pmwiki.php/Main/GayBestFriend]</ref>
=== Gay Conservative ===
'''Gay Conservative''' is a character who is gay and conservative, typically in a setting where the two ideas are somewhat incompatible. This is usually done for drama, to imply a gay person cannot be conservative without being a traitor to their sexuality, for tokenism, to defend conservative ideologies, or to be satire.<ref>[https://archive.ph/Guu7M https://tvtropes.org/pmwiki/pmwiki.php/Main/GayConservative]</ref>
=== Gay Cowboy ===
'''Gay Cowboy'''is a gay man who is from a Western genre, or is simply a fan of the genre and acts according to cowboy aesthetics.<ref>[https://archive.ph/Bd7Hf https://tvtropes.org/pmwiki/pmwiki.php/Main/GayCowboy]</ref>
=== Gayngster ===
'''Gayngster''' is a gay character who is involved in organized crime.<ref>[https://archive.ph/5ti1m https://tvtropes.org/pmwiki/pmwiki.php/Main/Gayngster]</ref>
=== Gym Bunny ===
'''Gym Bunny''' is a gay man who is constantly working out. This is typically not to stay healthy, but rather an attempt to hold his youthful looks for as long as possible. Outside of the media, this term is generally used as an insult within the gay community.<ref>[https://archive.ph/kvL23 https://tvtropes.org/pmwiki/pmwiki.php/Main/GymBunny]</ref>
=== Have I Mentioned I Am Gay? ===
'''Have I Mentioned I Am Gay?''' is when a gay character constantly states that they are gay, but the audience is never shown that they are. The audience will never see them display any romantic and/or sexual attraction towards characters of the same gender, nor will the audience see them go on dates with someone of the same gender, or ever have sex.<ref>[https://archive.ph/6XFxK https://tvtropes.org/pmwiki/pmwiki.php/Main/HaveIMentionedIAmGay]</ref>
=== Leatherman ===
'''Leatherman''' is a gay man who wears leather. This is a subculture within the LGBTQ+ community in real life, with historical roots in the BDSM community and biker culture. The lesbian counterpart is typically called '''Leatherdyke'''.<ref>[https://archive.ph/3KF8r https://tvtropes.org/pmwiki/pmwiki.php/Main/Leatherman]</ref>
=== Lesbian Jock ===
'''Lesbian Jock''' is a lesbian character who plays sports. This could also be the assumption that all women who play sports are lesbian.<ref>[https://archive.ph/6MVDj https://tvtropes.org/pmwiki/pmwiki.php/Main/LesbianJock]</ref>
=== Lesbian Vampire ===
'''Lesbian Vampire''' is a lesbian character who preys on young women. While this is typically shown as a woman vampire who turns young women into vampires, it could also play out as a young woman being turned into a vampire and suddenly feeling sexual attraction towards other women.<ref>[https://archive.ph/OYO6t https://tvtropes.org/pmwiki/pmwiki.php/Main/LesbianVampire]</ref>
=== Lipstick Lesbian ===
'''Lipstick Lesbian''' is a traditionally feminine lesbian character. This is related to the femme/butch subcultures within the LGBTQ+ community.<ref>[https://archive.ph/pdQxJ https://tvtropes.org/pmwiki/pmwiki.php/Main/LipstickLesbian]</ref>
=== Macho Camp ===
'''Macho Camp''' is when a Camp Gay character is large and muscular.<ref>[https://archive.ph/3e9km https://tvtropes.org/pmwiki/pmwiki.php/Main/MachoCamp]</ref>
=== Magical Queer ===
'''Magical Queer''' is when a character has all of the wisdom in the world because they are gay, and have been persecuted for it. This character is often a Camp Gay or Drag Queen. They tend to be an expert on heterosexual relationships and often don't have a romance of their own.<ref>[https://archive.ph/6VpqW https://tvtropes.org/pmwiki/pmwiki.php/Main/MagicalQueer]</ref>
=== Manly Gay ===
'''Manly Gay''' is a gay character who has no camp or feminine traits, and is purely masculine.<ref>[https://archive.ph/WjExq https://tvtropes.org/pmwiki/pmwiki.php/Main/ManlyGay]</ref>
=== Mentor in Queerness ===
'''Mentor in Queerness''' is an older character who is out, proud and confident, and helps a younger character navigate their troubles, specifically about their queer identity.<ref>[https://archive.ph/sPiFv https://tvtropes.org/pmwiki/pmwiki.php/Main/MentorInQueerness]</ref>
=== The Pastor's Queer Kid ===
'''The Pastor's Queer Kid''' is when a queer character is the child of a pastor or any other religious figure. This may also apply if the character simply has very religious parents.<ref>[https://archive.ph/huvlv https://tvtropes.org/pmwiki/pmwiki.php/Main/ThePastorsQueerKid]</ref>
=== Performance Artist ===
'''Performance Artist''' is a flamboyant character who loves acting, singing or performing in general. They love the spotlight, have memorized every line from their favorite music, took modern dance or ballet at some point, and are trying to break into Broadway or theatre in general.<ref>[https://archive.ph/euZ63 https://tvtropes.org/pmwiki/pmwiki.php/Main/PerformanceArtist]</ref>
=== Psycho Lesbian ===
'''Psycho Lesbian''' is a lesbian character who is described as mentally unstable, villainous or otherwise dangerous because they're a lesbian. Often they are covetous of other women and hateful towards men only because they are taking away too many potential mates. This character, like the Depraved Homosexual, is often motivated by unrequited love.<ref>[https://archive.ph/Czzv9 https://tvtropes.org/pmwiki/pmwiki.php/Main/PsychoLesbian]</ref>
=== Queer Character, Queer Actor ===
'''Queer Character, Queer Actor''' is when the actor cast to play a queer character is also queer themselves. Typically, this is for an actor who identifies the same way their character does, but that is not always the case.<ref>[https://archive.ph/umFKr https://tvtropes.org/pmwiki/pmwiki.php/Main/QueerCharacterQueerActor]</ref>
=== Rape and Switch ===
'''Rape and Switch''' is when it is stated or implied that a character is gay because of sexual assault. With this trope, both male and female victims exhibit the same response to sexual assault, to become attracted to the same gender.<ref>[https://archive.ph/4D4FJ https://tvtropes.org/pmwiki/pmwiki.php/Main/RapeAndSwitch]</ref>
=== Sissy Villain ===
'''Sissy Villain''' is when a villainous character is shown to be villainous because of their feminine traits.<ref>[https://archive.ph/37lxC https://tvtropes.org/pmwiki/pmwiki.php/Main/SissyVillain]</ref>
=== Token Lesbian ===
'''Token Lesbian''' is a lesbian character in a work with a predominantly gay men cast. The work may include their girlfriend, but that isn't common. If the character is the only queer person in the show, they are the '''Token Queer''' instead of the Token Lesbian.<ref>[https://archive.ph/RXTgG https://tvtropes.org/pmwiki/pmwiki.php/Main/TokenLesbian]</ref>
=== Trans Character, Cis Actor ===
'''Trans Character, Cis Actor''' is when a cisgender actor is cast to play a transgender character. Often times, the cis actor does not align with the gender the character identities as, which may imply that trans individuals are just crossdressing. Cis women playing trans women and cis men playing trans men tend to be better received, but still face criticism.<ref>[https://archive.ph/uK7gF https://tvtropes.org/pmwiki/pmwiki.php/Main/TransCharacterCisActor]</ref>
=== Transgender Fetishization ===
'''Transgender Fetishization''' is when a transgender character is hypersexualized because they are transgender. Sometimes, the character being sexualized is the result of a joke, or is not treated seriously.<ref>[https://archive.ph/CnhxC https://tvtropes.org/pmwiki/pmwiki.php/Main/TransgenderFetishization]</ref>
=== Transparent Closet ===
'''Transparent Closet''' is when everyone knows that a character is gay before the character knows themselves, or before a character has come out.<ref>[https://archive.ph/QsKKO https://tvtropes.org/pmwiki/pmwiki.php/Main/TransparentCloset]</ref>
=== The Twink ===
'''The Twink''' is a young gay man who is sterotypically thin with minimal facial and body hair. Their clothing style is typically on the preppy side as well.<ref>[https://archive.ph/kC3r3 https://tvtropes.org/pmwiki/pmwiki.php/Main/TheTwink]</ref>
=== Word of Gay ===
'''Word of Gay''' is when the creator, or another individual who worked greatly on the piece of media, confirms a character as queer outside of the work itself. Often, the character is never shown to be queer in the work, some characters may have never even been hinted at being queer.<ref>[https://archive.ph/qOkwC https://tvtropes.org/pmwiki/pmwiki.php/Main/WordOfGay]</ref>
== Sources ==
<references />
[[Category:Help]] [[Category:Important]]
34a3ef877f739a74f5edd7df9ad556da86dce61a
File:Santana Lopez.png
6
105
232
2023-09-22T00:27:33Z
CheSnail
2
wikitext
text/x-wiki
Santana Lopez from Glee
82539f4db1a15f867bfb7fcb11d462037e8b075d
File:Santana and Brittany.png
6
106
233
2023-09-22T00:29:15Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Santana Lopez 2.png
6
107
234
2023-09-22T00:29:36Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Santana Lopez Lady Gaga.png
6
108
235
2023-09-22T00:29:58Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Santana Lopez Yeast I Stat.png
6
109
236
2023-09-22T00:30:23Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Santana and Dani.png
6
110
237
2023-09-22T00:30:40Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Santana and Brittany 2.png
6
111
238
2023-09-22T00:30:58Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Santana Lopez slushie.png
6
112
239
2023-09-22T00:32:02Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Santana Lopez as Artie Abrams.png
6
113
240
2023-09-22T00:32:27Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Santana Lopez
0
114
241
2023-09-22T00:39:54Z
CheSnail
2
Created page with "[[File:Santana Lopez.png|thumb|289x289px]] '''Santana Diabla Lopez''' is a lesbian character from the musical comedy-drama ''Glee''. She is a major character in the show. She was played by Naya Rivera. She first appeared in the episode ''Pilot'' and her last appearance was in ''Dreams Come True''. She was initially a major recurring character, but was promoted to a main character in season two, before getting demoted again for season six. ==Biography== Santana served as..."
wikitext
text/x-wiki
[[File:Santana Lopez.png|thumb|289x289px]]
'''Santana Diabla Lopez''' is a lesbian character from the musical comedy-drama ''Glee''.
She is a major character in the show. She was played by Naya Rivera. She first appeared in the episode ''Pilot'' and her last appearance was in ''Dreams Come True''. She was initially a major recurring character, but was promoted to a main character in season two, before getting demoted again for season six.
==Biography==
Santana served as co-captain of the Cheerios, as a member of her high school's Glee club, and was momentarily in an all-girls second Glee Club.
She has been struggling with accepting her sexuality for the majority of season two. By season three, she was outed as a lesbian.
She started school as a student at The University of Louisville, where she had been given a full scholarship for her work as a cheerleader. However, it was later revealed that she dropped out because she didn't enjoy what she was doing there. She ended up moving to New York City and becoming roommates with [[Kurt Hummel]], Rachel and Brody. She got kicked out of their apartment before eventually moving back in.
She attended NYADA extension classes for dance and had many side jobs, including being a waitress at The Spotlight Diner and starring int two commercials for Yeast I Stat. She got cast as Rachel's understudy in ''Funny Girl'', starting a feud between them that gets them both kicked out of Kurt's band. She eventually resigns as Rachel's understudy.
Mercedes tried to help get Santana in her recording deal and she became Rachel's publicist. She goes on tour with Mercedes and [[Brittany Pierce]]. She proposed to Brittany and they got married later.
==Personality==
Santana is primarily shown to be a cheerleader stereotype, quick to pass judgement and insult or bully others. She views her behavior as honesty and sees nothing wrong with it. She has no problem flaunting her social position and is promiscuous to remain on top.
She does demonstrate occasional signs of kindness, usually with the Glee Club after a good performance. She is extremely emotional at times, often for ridiculous reasons. She gets jealous easily, displaying hostility towards Rachel, Quinn, Mercedes, Lauren, Rory and Sam when they seem to be in a relationship with Puck or Brittany.
She is known to be manipulative and persuasive, as well as being very observational and perceptive. She is always finding out the secrets of others by simply watching them.
She does take her relationships with others very seriously. Whenever someone hurts those she cares about, she becomes very defensive.
She gets incredibly hostile weaknesses are exposed, but has no problem insulting others and putting others down.
==Identity==
The first time Santana and Brittany's relationship is mentioned is in ''Sectionals'', in which they were in a five-way call with other Glee Club members and Brittany mentions them having sex.
In ''Sexy'', Santana admitted to Brittany that she never liked any of the boys she's dated or had sex with and that all she wanted was Brittany, "I don't want to be with Sam, or Finn, or any of those other guys; I just want you!" She also called Artie "just a stupid boy," and made disparaging remarks about Brittany's sexual fluidity. This led many to believe she was a lesbian before it was later confirmed.
===Reception===
Most of the response to Santana's story was positive. Many felt a lot of relatability to her story of overcoming self-hatred and internalized homophobia, her experience spoke to many young queer individuals. She especially touched the hearts of many young queer women of color.<ref>[https://archive.ph/wBOsN https://collider.com/glee-santana-lopez-best-character-coming-out-naya-rivera/]</ref>
==Gallery==
<gallery>
File:Santana and Brittany.png
File:Santana Lopez 2.png
File:Santana Lopez Lady Gaga.png
File:Santana Lopez Yeast I Stat.png
File:Santana and Dani.png
File:Santana and Brittany 2.png
File:Santana Lopez slushie.png
File:Santana Lopez as Artie Abrams.png
</gallery>
==Trivia==
*Santana is the first openly lesbian character on ''Glee''.
*Santana is left-handed.
*Santana's favorite song is ''You Oughta Know'' by Alanis Morissette.
==See Also==
*[https://glee.fandom.com/wiki/Santana_Lopez Santana Lopez] on the ''Glee'' FANDOM Wiki
==Sources==
<references />
[[Category:Lesbian Characters]]
[[Category:Glee Characters]]
[[Category:Woman Characters]]
[[Category:Main Characters]]
2ede27e4c70ad63355f8f52e6f7c6b8f1f707b95
246
241
2023-09-22T00:45:59Z
CheSnail
2
wikitext
text/x-wiki
[[File:Santana Lopez.png|thumb|289x289px]]
'''Santana Diabla Lopez''' is a lesbian character from the musical comedy-drama, ''Glee''.
She is a major character in the show. She was played by Naya Rivera. She first appeared in the episode ''Pilot'' and her last appearance was in ''Dreams Come True''. She was initially a major recurring character, but was promoted to a main character in season two, before getting demoted again for season six.
==Biography==
Santana served as co-captain of the Cheerios, as a member of her high school's Glee club, and was momentarily in an all-girls second Glee Club.
She has been struggling with accepting her sexuality for the majority of season two. By season three, she was outed as a lesbian.
She started school as a student at The University of Louisville, where she had been given a full scholarship for her work as a cheerleader. However, it was later revealed that she dropped out because she didn't enjoy what she was doing there. She ended up moving to New York City and becoming roommates with [[Kurt Hummel]], Rachel and Brody. She got kicked out of their apartment before eventually moving back in.
She attended NYADA extension classes for dance and had many side jobs, including being a waitress at The Spotlight Diner and starring int two commercials for Yeast I Stat. She got cast as Rachel's understudy in ''Funny Girl'', starting a feud between them that gets them both kicked out of Kurt's band. She eventually resigns as Rachel's understudy.
Mercedes tried to help get Santana in her recording deal and she became Rachel's publicist. She goes on tour with Mercedes and [[Brittany Pierce]]. She proposed to Brittany and they got married later.
==Personality==
Santana is primarily shown to be a cheerleader stereotype, quick to pass judgement and insult or bully others. She views her behavior as honesty and sees nothing wrong with it. She has no problem flaunting her social position and is promiscuous to remain on top.
She does demonstrate occasional signs of kindness, usually with the Glee Club after a good performance. She is extremely emotional at times, often for ridiculous reasons. She gets jealous easily, displaying hostility towards Rachel, Quinn, Mercedes, Lauren, Rory and Sam when they seem to be in a relationship with Puck or Brittany.
She is known to be manipulative and persuasive, as well as being very observational and perceptive. She is always finding out the secrets of others by simply watching them.
She does take her relationships with others very seriously. Whenever someone hurts those she cares about, she becomes very defensive.
She gets incredibly hostile weaknesses are exposed, but has no problem insulting others and putting others down.
==Identity==
The first time Santana and Brittany's relationship is mentioned is in ''Sectionals'', in which they were in a five-way call with other Glee Club members and Brittany mentions them having sex.
In ''Sexy'', Santana admitted to Brittany that she never liked any of the boys she's dated or had sex with and that all she wanted was Brittany, "I don't want to be with Sam, or Finn, or any of those other guys; I just want you!" She also called Artie "just a stupid boy," and made disparaging remarks about Brittany's sexual fluidity. This led many to believe she was a lesbian before it was later confirmed.
===Reception===
Most of the response to Santana's story was positive. Many felt a lot of relatability to her story of overcoming self-hatred and internalized homophobia, her experience spoke to many young queer individuals. She especially touched the hearts of many young queer women of color.<ref>[https://archive.ph/wBOsN https://collider.com/glee-santana-lopez-best-character-coming-out-naya-rivera/]</ref>
==Gallery==
<gallery>
File:Santana and Brittany.png
File:Santana Lopez 2.png
File:Santana Lopez Lady Gaga.png
File:Santana Lopez Yeast I Stat.png
File:Santana and Dani.png
File:Santana and Brittany 2.png
File:Santana Lopez slushie.png
File:Santana Lopez as Artie Abrams.png
</gallery>
==Trivia==
*Santana is the first openly lesbian character on ''Glee''.
*Santana is left-handed.
*Santana's favorite song is ''You Oughta Know'' by Alanis Morissette.
==See Also==
*[https://glee.fandom.com/wiki/Santana_Lopez Santana Lopez] on the ''Glee'' FANDOM Wiki
==Sources==
<references />
[[Category:Lesbian Characters]]
[[Category:Glee Characters]]
[[Category:Woman Characters]]
[[Category:Main Characters]]
03063bf5f01919b1333a6ad39fd715273a458883
Category:Glee Characters
14
115
242
2023-09-22T00:40:32Z
CheSnail
2
Created page with "This category is for characters that are from the musical drama-comedy series, ''Glee''."
wikitext
text/x-wiki
This category is for characters that are from the musical drama-comedy series, ''Glee''.
0bf59a8f86daaed29b4b6a9fdd0104d3cb5ad1be
File:Woman flag.png
6
116
243
2023-09-22T00:41:30Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Category:Woman Characters
14
117
244
2023-09-22T00:41:59Z
CheSnail
2
Created page with "[[File:Woman flag.png|frameless|center|200px]] [[Category:Characters by Identity]]"
wikitext
text/x-wiki
[[File:Woman flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
0a33c69b6f0216e32203cd7f1c65b9878c06279f
Category:Main Characters
14
118
245
2023-09-22T00:42:29Z
CheSnail
2
Created page with "This category is for any and all main characters in whatever media they are from."
wikitext
text/x-wiki
This category is for any and all main characters in whatever media they are from.
fabb3a3a93bd55e5e1f7c01076fce09635300597
File:Camile Wray.png
6
119
247
2023-09-22T01:54:31Z
CheSnail
2
wikitext
text/x-wiki
Camile Wray from Stargate Universe
76670cc8c86b64cce713286deb32a061e23fdf34
File:Camile Wray alternate timeline.png
6
120
248
2023-09-22T01:55:10Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Camile Wray 2.png
6
121
249
2023-09-22T01:55:26Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Wray and Sharon.png
6
122
250
2023-09-22T01:55:53Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Camile Wray
0
123
251
2023-09-22T02:00:17Z
CheSnail
2
Created page with "[[File:Camile Wray.png|thumb|200x200px]] '''Camile Wray''' is a gay character from the sci-fi series ''Stargate Universe''. She is a major character in the show. She is played by Ming-Na. She first appeared in the episode ''Air, Part 1'' and her last appearance was in ''Gauntlet''. She was credited as a regular character in the first two episodes, but was downgraded to recurring until she became a regular again from ''Justice'' onwards. ==Biography== Wray is an experien..."
wikitext
text/x-wiki
[[File:Camile Wray.png|thumb|200x200px]]
'''Camile Wray''' is a gay character from the sci-fi series ''Stargate Universe''.
She is a major character in the show. She is played by Ming-Na. She first appeared in the episode ''Air, Part 1'' and her last appearance was in ''Gauntlet''. She was credited as a regular character in the first two episodes, but was downgraded to recurring until she became a regular again from ''Justice'' onwards.
==Biography==
Wray is an experienced member of the International Oversight Advisory (IOA), and became the representative on Icarus Base. She requested promotion four times, but was always turned down and passed over without being given a proper reason why.
When Icarus Base was attacked, she and the others believed they were being evacuated back to Earth through the Stargate, but Dr. Rush changed the address to the ninth chevron and everyone on the base was sent to the Destiny instead.
She was the sole IOA representative on the Destiny and attended meetings between Colonel Young and the other crew members.
She had many squabbles with the military crew of the Destiny, particularly Colonel Young, who she tried to overthrow with Dr. Rush. She would form alliances with several civilian members to start a coup.
During her visits to Earth using body-transferring devices, she would visit her partner, [[Sharon Walker]]. However, as time went on, it became more obvious that Sharon could not handle seeing Wray in another person's body and not the person she fell in love with.
==Personality==
Camile can be a bit hostile towards the other members of the Destiny, particularly the military personnel. She finds herself at odds with many of her peers on many occasions.
==Identity==
Wray was announced as a gay character before ''Stargate Universe'' aired during a panel at Creation Entertainment's Vancouver Stargate convention. However, she was never described as "lesbian."<ref>[https://archive.ph/An9Q https://www.gateworld.net/news/2009/04/cooper-sgu-has-gay-characters/]</ref>
Her relationship with Sharon was revealed casually, with her simply visiting her on Earth and revealing their relationship naturally.
===Reception===
The Companion described ''Stargate Universe'' as breaking another barrier in featuring the first canon same-sex couple in the franchise, along with praising that, while their relationship was groundbreaking, their sexuality was never treated as an issue to be tackled.<ref>[https://archive.ph/l3MVC https://www.thecompanion.app/stargate-camile-sharon/]</ref>
==Gallery==
<gallery>
File:Camile Wray alternate timeline.png
File:Camile Wray 2.png
File:Wray and Sharon.png
</gallery>
==Trivia==
*Wray's name was originally "Camille Wray," but that name did not pass legal clearance.
*Wray and Sharon wear matching necklaces to symbolize their relationship.
==See Also==
*[https://stargate.fandom.com/wiki/Camile_Wray Camile Wray] on the ''Stargate'' FANDOM Wiki
*[https://www.gateworld.net/wiki/Camille_Wray Camile Wray] on Gate World
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Stargate Characters]]
[[Category:Stargate Universe Characters]]
[[Category:Woman Characters]]
[[Category:Main Characters]]
1c1e76b72ba58d14750d6efd27b6fd0c9a781e57
259
251
2023-09-22T02:27:17Z
CheSnail
2
wikitext
text/x-wiki
[[File:Camile Wray.png|thumb|200x200px]]
'''Camile Wray''' is a gay character from the sci-fi series ''Stargate Universe''.
She is a major character in the show. She is played by Ming-Na. She first appeared in the episode ''Air, Part 1'' and her last appearance was in ''Gauntlet''. She was credited as a regular character in the first two episodes, but was downgraded to recurring until she became a regular again from ''Justice'' onwards.
==Biography==
Wray is an experienced member of the International Oversight Advisory (IOA), and became the representative on Icarus Base. She requested promotion four times, but was always turned down and passed over without being given a proper reason why.
When Icarus Base was attacked, she and the others believed they were being evacuated back to Earth through the Stargate, but Dr. Rush changed the address to the ninth chevron and everyone on the base was sent to the Destiny instead.
She was the sole IOA representative on the Destiny and attended meetings between Colonel Young and the other crew members.
She had many squabbles with the military crew of the Destiny, particularly Colonel Young, who she tried to overthrow with Dr. Rush. She would form alliances with several civilian members to start a coup.
During her visits to Earth using body-transferring devices, she would visit her partner, [[Sharon Walker]]. However, as time went on, it became more obvious that Sharon could not handle seeing Wray in another person's body and not the person she fell in love with.
==Personality==
Camile can be a bit hostile towards the other members of the Destiny, particularly the military personnel. She finds herself at odds with many of her peers on many occasions.
==Identity==
Wray was announced as a gay character before ''Stargate Universe'' aired during a panel at Creation Entertainment's Vancouver Stargate convention. However, she was never described as "lesbian."<ref>[https://archive.ph/An9Q https://www.gateworld.net/news/2009/04/cooper-sgu-has-gay-characters/]</ref>
Her relationship with Sharon was revealed casually, with her simply visiting her on Earth and revealing their relationship naturally.
===Reception===
The Companion described ''Stargate Universe'' as breaking another barrier in featuring the first canon same-sex couple in the franchise, along with praising that, while their relationship was groundbreaking, their sexuality was never treated as an issue to be tackled.<ref>[https://archive.ph/l3MVC https://www.thecompanion.app/stargate-camile-sharon/]</ref>
==Gallery==
<gallery>
File:Camile Wray alternate timeline.png
File:Camile Wray 2.png
File:Wray and Sharon.png
</gallery>
==Trivia==
*Wray's name was originally "Camille Wray," but that name did not pass legal clearance.
*Wray and Sharon wear matching necklaces to symbolize their relationship.
==See Also==
*[https://stargate.fandom.com/wiki/Camile_Wray Camile Wray] on the ''Stargate'' FANDOM Wiki
*[https://www.gateworld.net/wiki/Camille_Wray Camile Wray] on Gate World
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Stargate Characters]]
[[Category:Stargate Universe Characters]]
[[Category:Woman Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
452b9e315e80101be6592ccda3a255e4be26bc31
289
259
2023-10-15T18:15:35Z
CheSnail
2
wikitext
text/x-wiki
[[File:Camile Wray.png|thumb|200x200px]]
'''Camile Wray''' is a gay character from the sci-fi series, ''Stargate Universe''.
She is a major character in the show. She is played by Ming-Na. She first appeared in the episode ''Air, Part 1'' and her last appearance was in ''Gauntlet''. She was credited as a regular character in the first two episodes, but was downgraded to recurring until she became a regular again from ''Justice'' onwards.
==Biography==
Wray is an experienced member of the International Oversight Advisory (IOA), and became the representative on Icarus Base. She requested promotion four times, but was always turned down and passed over without being given a proper reason why.
When Icarus Base was attacked, she and the others believed they were being evacuated back to Earth through the Stargate, but Dr. Rush changed the address to the ninth chevron and everyone on the base was sent to the Destiny instead.
She was the sole IOA representative on the Destiny and attended meetings between Colonel Young and the other crew members.
She had many squabbles with the military crew of the Destiny, particularly Colonel Young, who she tried to overthrow with Dr. Rush. She would form alliances with several civilian members to start a coup.
During her visits to Earth using body-transferring devices, she would visit her partner, [[Sharon Walker]]. However, as time went on, it became more obvious that Sharon could not handle seeing Wray in another person's body and not the person she fell in love with.
==Personality==
Camile can be a bit hostile towards the other members of the Destiny, particularly the military personnel. She finds herself at odds with many of her peers on many occasions.
==Identity==
Wray was announced as a gay character before ''Stargate Universe'' aired during a panel at Creation Entertainment's Vancouver Stargate convention. However, she was never described as "lesbian."<ref>[https://archive.ph/An9Q https://www.gateworld.net/news/2009/04/cooper-sgu-has-gay-characters/]</ref>
Her relationship with Sharon was revealed casually, with her simply visiting her on Earth and revealing their relationship naturally.
===Reception===
The Companion described ''Stargate Universe'' as breaking another barrier in featuring the first canon same-sex couple in the franchise, along with praising that, while their relationship was groundbreaking, their sexuality was never treated as an issue to be tackled.<ref>[https://archive.ph/l3MVC https://www.thecompanion.app/stargate-camile-sharon/]</ref>
==Gallery==
<gallery>
File:Camile Wray alternate timeline.png
File:Camile Wray 2.png
File:Wray and Sharon.png
</gallery>
==Trivia==
*Wray's name was originally "Camille Wray," but that name did not pass legal clearance.
*Wray and Sharon wear matching necklaces to symbolize their relationship.
==See Also==
*[https://stargate.fandom.com/wiki/Camile_Wray Camile Wray] on the ''Stargate'' FANDOM Wiki
*[https://www.gateworld.net/wiki/Camille_Wray Camile Wray] on Gate World
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Stargate Characters]]
[[Category:Stargate Universe Characters]]
[[Category:Woman Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
dc35684507f6a2fea2fdf42f578e4f7d7bd1f18b
291
289
2023-10-15T18:16:21Z
CheSnail
2
wikitext
text/x-wiki
[[File:Camile Wray.png|200x200px|right|frameless]]
'''Camile Wray''' is a gay character from the sci-fi series, ''Stargate Universe''.
She is a major character in the show. She is played by Ming-Na. She first appeared in the episode ''Air, Part 1'' and her last appearance was in ''Gauntlet''. She was credited as a regular character in the first two episodes, but was downgraded to recurring until she became a regular again from ''Justice'' onwards.
==Biography==
Wray is an experienced member of the International Oversight Advisory (IOA), and became the representative on Icarus Base. She requested promotion four times, but was always turned down and passed over without being given a proper reason why.
When Icarus Base was attacked, she and the others believed they were being evacuated back to Earth through the Stargate, but Dr. Rush changed the address to the ninth chevron and everyone on the base was sent to the Destiny instead.
She was the sole IOA representative on the Destiny and attended meetings between Colonel Young and the other crew members.
She had many squabbles with the military crew of the Destiny, particularly Colonel Young, who she tried to overthrow with Dr. Rush. She would form alliances with several civilian members to start a coup.
During her visits to Earth using body-transferring devices, she would visit her partner, [[Sharon Walker]]. However, as time went on, it became more obvious that Sharon could not handle seeing Wray in another person's body and not the person she fell in love with.
==Personality==
Camile can be a bit hostile towards the other members of the Destiny, particularly the military personnel. She finds herself at odds with many of her peers on many occasions.
==Identity==
Wray was announced as a gay character before ''Stargate Universe'' aired during a panel at Creation Entertainment's Vancouver Stargate convention. However, she was never described as "lesbian."<ref>[https://archive.ph/An9Q https://www.gateworld.net/news/2009/04/cooper-sgu-has-gay-characters/]</ref>
Her relationship with Sharon was revealed casually, with her simply visiting her on Earth and revealing their relationship naturally.
===Reception===
The Companion described ''Stargate Universe'' as breaking another barrier in featuring the first canon same-sex couple in the franchise, along with praising that, while their relationship was groundbreaking, their sexuality was never treated as an issue to be tackled.<ref>[https://archive.ph/l3MVC https://www.thecompanion.app/stargate-camile-sharon/]</ref>
==Gallery==
<gallery>
File:Camile Wray alternate timeline.png
File:Camile Wray 2.png
File:Wray and Sharon.png
</gallery>
==Trivia==
*Wray's name was originally "Camille Wray," but that name did not pass legal clearance.
*Wray and Sharon wear matching necklaces to symbolize their relationship.
==See Also==
*[https://stargate.fandom.com/wiki/Camile_Wray Camile Wray] on the ''Stargate'' FANDOM Wiki
*[https://www.gateworld.net/wiki/Camille_Wray Camile Wray] on Gate World
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Stargate Characters]]
[[Category:Stargate Universe Characters]]
[[Category:Woman Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
4522f5440bbf7046652d38de01dccb5511829267
Category:Stargate Characters
14
124
252
2023-09-22T02:01:11Z
CheSnail
2
Created page with "This category is for characters that are from the sci-fi franchise ''Stargate'' as a whole."
wikitext
text/x-wiki
This category is for characters that are from the sci-fi franchise ''Stargate'' as a whole.
ea4338a0bf08e841d1f82d0b646b075c138cad83
Category:Stargate Universe Characters
14
125
253
2023-09-22T02:01:53Z
CheSnail
2
Created page with "This category is for characters that are from the sci-fi series ''Stargate Universe''."
wikitext
text/x-wiki
This category is for characters that are from the sci-fi series ''Stargate Universe''.
ae64429bdba8695623dc4dedbb5df15baf9f6d3a
User:CheSnail
2
2
254
231
2023-09-22T02:06:24Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Tilly Harrell]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Cedardrop]] (Nightfall)
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Mari Arendse]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
* [[Tam Kadosh]] (Neon Apocalypse)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]] (Neon Apocalypse)
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
81d311a71d2f3a09b1fe2d64b9ab6da79b803c52
255
254
2023-09-22T02:17:31Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
** Homospike
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
** Tranmasc
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
** Transfem
* [[Tilly Harrell]] (The Show Must Go On)
** Transfem
* [[Kalzetta Sultana]] (The Show Must Go On)
** Transneu
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
** Transfem
* [[Hal Witherspoon]] (The Show Must Go On)
** Transfluid
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
** Transfem
* [[Cedardrop]] (Nightfall)
** Transfem
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Transfem
* [[Simon Lefèvre]] (The Exchange)
** Transneu
* [[Mari Arendse]] (Unfinished Business)
** Transfem
* [[Wira]] (Unfinished Business)
** Transmasc
* [[Finn Miller]] (Neon Apocalypse)
** Transmasc
* [[Tam Kadosh]] (Neon Apocalypse)
* [[Alexis Pachis]] (Neon Apocalypse)
* [[Höllenhund]] (The Exchange)
** Transsex
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
** Panflux
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]] (Neon Apocalypse)
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
** Orientationless
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
** Orientationless
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
fc52b8a1015e0dd0c2e25d1c9d075dd2173c2ef0
256
255
2023-09-22T02:22:07Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
** Homospike
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
** Tranmasc
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
** Transfem
* [[Tilly Harrell]] (The Show Must Go On)
** Transfem
* [[Kalzetta Sultana]] (The Show Must Go On)
** Transneutral
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
** Transfem
* [[Hal Witherspoon]] (The Show Must Go On)
** Transfluid
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
** Transfem
* [[Cedardrop]] (Nightfall)
** Transfem
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Transfem
* [[Simon Lefèvre]] (The Exchange)
** Transneutral
* [[Mari Arendse]] (Unfinished Business)
** Transfem
* [[Wira]] (Unfinished Business)
** Transmasc
* [[Finn Miller]] (Neon Apocalypse)
** Transmasc
* [[Tam Kadosh]] (Neon Apocalypse)
* [[Alexis Pachis]] (Neon Apocalypse)
* [[Höllenhund]] (The Exchange)
** Transsex
* [[Xenia Megalos]] (Neon Apocalypse)
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
** Panflux
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]] (Neon Apocalypse)
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
** Orientationless
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
** Orientationless
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
376ffd7ca290dd045d2de167f62ded3cd2372ea6
263
256
2023-09-23T16:32:48Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spender Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
** Homospike
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
** Tranmasc
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
** Transfem
* [[Tilly Harrell]] (The Show Must Go On)
** Transfem
* [[Kalzetta Sultana]] (The Show Must Go On)
** Transneutral
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
** Transfem
* [[Hal Witherspoon]] (The Show Must Go On)
** Transfluid
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
** Transfem
* [[Cedardrop]] (Nightfall)
** Transfem
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Transfem
* [[Simon Lefèvre]] (The Exchange)
** Transneutral
* [[Mari Arendse]] (Unfinished Business)
** Transfem
* [[Wira]] (Unfinished Business)
** Transmasc
* [[Finn Miller]] (Neon Apocalypse)
** Transmasc
* [[Tam Kadosh]] (Neon Apocalypse)
* [[Alexis Pachis]] (Neon Apocalypse)
* [[Höllenhund]] (The Exchange)
** Transsex
* [[Xenia Megalos]] (Neon Apocalypse)
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
** Panflux
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]] (Neon Apocalypse)
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
** Orientationless
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
** Orientationless
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
879fadfe45c3627a3b157d751f4c68b077831c93
264
263
2023-09-23T16:52:37Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Pan Characters ===
* [[Puen (Project S: SPIKE)]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
** Homospike
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
** Tranmasc
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
** Transfem
* [[Tilly Harrell]] (The Show Must Go On)
** Transfem
* [[Kalzetta Sultana]] (The Show Must Go On)
** Transneutral
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
** Transfem
* [[Hal Witherspoon]] (The Show Must Go On)
** Transfluid
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
** Transfem
* [[Cedardrop]] (Nightfall)
** Transfem
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Transfem
* [[Simon Lefèvre]] (The Exchange)
** Transneutral
* [[Mari Arendse]] (Unfinished Business)
** Transfem
* [[Wira]] (Unfinished Business)
** Transmasc
* [[Finn Miller]] (Neon Apocalypse)
** Transmasc
* [[Tam Kadosh]] (Neon Apocalypse)
* [[Alexis Pachis]] (Neon Apocalypse)
* [[Höllenhund]] (The Exchange)
** Transsex
* [[Xenia Megalos]] (Neon Apocalypse)
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
** Panflux
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]] (Neon Apocalypse)
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
** Orientationless
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
** Orientationless
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
116d9af3164a842f976754b3ce3b555c778123ec
265
264
2023-09-23T16:59:56Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
** Homospike
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
** Tranmasc
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
** Transfem
* [[Tilly Harrell]] (The Show Must Go On)
** Transfem
* [[Kalzetta Sultana]] (The Show Must Go On)
** Transneutral
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
** Transfem
* [[Hal Witherspoon]] (The Show Must Go On)
** Transfluid
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
** Transfem
* [[Cedardrop]] (Nightfall)
** Transfem
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Transfem
* [[Simon Lefèvre]] (The Exchange)
** Transneutral
* [[Mari Arendse]] (Unfinished Business)
** Transfem
* [[Wira]] (Unfinished Business)
** Transmasc
* [[Finn Miller]] (Neon Apocalypse)
** Transmasc
* [[Tam Kadosh]] (Neon Apocalypse)
* [[Alexis Pachis]] (Neon Apocalypse)
* [[Höllenhund]] (The Exchange)
** Transsex
* [[Xenia Megalos]] (Neon Apocalypse)
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
** Panflux
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]] (Neon Apocalypse)
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
** Orientationless
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
** Orientationless
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
049a9dd6eac873911f0c5477044990eda43d2d6b
266
265
2023-09-23T17:44:05Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
** Homospike
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
** Tranmasc
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
** Transfem
* [[Tilly Harrell]] (The Show Must Go On)
** Transfem
* [[Kalzetta Sultana]] (The Show Must Go On)
** Transneutral
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
** Transfem
* [[Hal Witherspoon]] (The Show Must Go On)
** Transfluid
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
** Transfem
* [[Cedardrop]] (Nightfall)
** Transfem
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Transfem
* [[Simon Lefèvre]] (The Exchange)
** Transneutral
* [[Mari Arendse]] (Unfinished Business)
** Transfem
* [[Wira]] (Unfinished Business)
** Transmasc
* [[Finn Miller]] (Neon Apocalypse)
** Transmasc
* [[Tam Kadosh]] (Neon Apocalypse)
* [[Alexis Pachis]] (Neon Apocalypse)
* [[Höllenhund]] (The Exchange)
** Transsex
* [[Xenia Megalos]] (Neon Apocalypse)
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
** Panflux
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Demi Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]] (Neon Apocalypse)
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
* [[Angel Ashworth]] (CLASH)
** Minlutter
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
* [[Angel Ashworth]] (CLASH)
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
** Orientationless
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
** Orientationless
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
eaeb83b9f5625f91f06ed4e9fbb922bd0265f4b5
267
266
2023-09-23T17:46:43Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== My Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== My Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
** Homospike
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
** Tranmasc
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
** Transfem
* [[Tilly Harrell]] (The Show Must Go On)
** Transfem
* [[Kalzetta Sultana]] (The Show Must Go On)
** Transneutral
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
** Transfem
* [[Hal Witherspoon]] (The Show Must Go On)
** Transfluid
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
** Transfem
* [[Cedardrop]] (Nightfall)
** Transfem
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Transfem
* [[Simon Lefèvre]] (The Exchange)
** Transneutral
* [[Mari Arendse]] (Unfinished Business)
** Transfem
* [[Wira]] (Unfinished Business)
** Transmasc
* [[Finn Miller]] (Neon Apocalypse)
** Transmasc
* [[Tam Kadosh]] (Neon Apocalypse)
* [[Alexis Pachis]] (Neon Apocalypse)
* [[Höllenhund]] (The Exchange)
** Transsex
* [[Xenia Megalos]] (Neon Apocalypse)
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
** Panflux
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]] (Neon Apocalypse)
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
* [[Angel Ashworth]] (CLASH)
** Minlutter
*[[Júlio César Carvalho Silva]] (The Show Must Go On)
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
* [[Angel Ashworth]] (CLASH)
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
** Orientationless
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
** Orientationless
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
f032cf69956ba98108f429c0040df6481a443fd0
268
267
2023-09-23T18:10:33Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]] (CLASH)
* [[Basil Starr]] (CLASH)
* [[Zack Harper]] (CLASH)
* [[Ode Shadow]] (CLASH)
* [[Cullen Bruce]] (Outside Perspective)
* [[Jorgino Etienam Gourriel]] (Outside Perspective)
* [[Nick O'Malley]] (The Show Must Go On)
* [[Caleb Tennyson]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Joel Coy-Young]] (Devil Watch)
* [[Caolán Neville]] (Nightfall)
* [[Jair Avenida Caballo]] (The Exchange)
* [[Bram Klein]] (The Exchange)
* [[Rowan Jin]] (The Exchange)
* [[Daniel Gevorgyan]] (Unfinished Business)
* [[Finn Miller]] (Neon Apocalypse)
** Homospike
* [[Christos Metaxas]] (The Exchange)
* [[Micah Aung]] (Unfinished Business)
* [[Tam Kadosh]] (Neon Apocalypse)
=== My Lesbian Characters ===
* [[Phượng Hoàng]] (Outside Perspective)
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Rena Ingram]] (The Show Must Go On)
* [[Gwen Dale]] (The Show Must Go On)
* [[Delilah Alexander]] (The Show Must Go On)
* [[Yamila Acuna Zegarra]] (Devil Watch)
* [[Channary Soun]] (Nightfall)
* [[Julia Aiza Villa]] (The Exchange)
* [[Megan Young]] (Nightfall)
* [[Höllenhund]] (The Exchange)
=== My Gay Man Characters ===
* [[Zack Harper]] (CLASH)
** Veldian
* [[Darko Novak]] (Outside Perspective)
* [[Caolán Neville]] (Nightfall)
** Uranian
* [[Jair Avenida Caballo]] (The Exchange)
** Uranian
* [[Rowan Jin]] (The Exchange)
** Turian
* [[Víctor Valiente Zamorano]] (The Exchange)
* [[Simon Lefèvre]] (The Exchange)
* [[Aaron Woodrow]] (Unfinished Business)
* [[Alexis Pachis]] (Neon Apocalypse)
=== My Bi Characters ===
* [[Pierce Abraham]] (CLASH)
* [[Belle Starr]] (CLASH)
* [[Darko Novak]] (Outside Perspective)
* [[Pièrre Beaulieu]] (Outside Perspective)
* [[Roz Beridze]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Desiree Chan]] (The Show Must Go On)
* [[Don Holland]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Jesse Alexander]] (The Show Must Go On)
* [[Lake Manivong]] (Devil Watch)
* [[Quinn Ó Rinn]] (Nightfall)
* [[Travis Graves]] (Nightfall)
* [[Tomás Vincent]] (Nightfall)
* [[Bram Klein]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Bicurious
* [[Jett Kim]] (Unfinished Business)
* [[Wira]] (Unfinished Business)
* [[Deangelo Perkins]] (Nightfall)
** Offsexual
* [[Jena Allen]] (Nightfall)
* [[Sadie Kim]] (Unfinished Business)
=== My Trans Characters ===
* [[Angel Ashworth]] (CLASH)
** Tranmasc
* [[Jewel Baumgartner]] (Outside Perspective)
* [[Robin Hartell]] (Outside Perspective)
* [[Iris Hoover-Henderson]] (The Show Must Go On)
** Transfem
* [[Tilly Harrell]] (The Show Must Go On)
** Transfem
* [[Kalzetta Sultana]] (The Show Must Go On)
** Transneutral
* [[Miley Sharma]] (The Show Must Go On)
* [[Kira Varley]] (The Show Must Go On)
** Transfem
* [[Hal Witherspoon]] (The Show Must Go On)
** Transfluid
* [[Quin Collingwood]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Yamila Acuna Zegarra]] (Devil Watch)
** Transfem
* [[Cedardrop]] (Nightfall)
** Transfem
* [[Ryan McNiven]] (Nightfall)
* [[Aki Kazama]] (The Exchange)
* [[Menna Elrashidy]] (The Exchange)
** Transfem
* [[Simon Lefèvre]] (The Exchange)
** Transneutral
* [[Mari Arendse]] (Unfinished Business)
** Transfem
* [[Wira]] (Unfinished Business)
** Transmasc
* [[Finn Miller]] (Neon Apocalypse)
** Transmasc
* [[Tam Kadosh]] (Neon Apocalypse)
* [[Alexis Pachis]] (Neon Apocalypse)
* [[Höllenhund]] (The Exchange)
** Transsex
* [[Xenia Megalos]] (Neon Apocalypse)
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]] (CLASH)
* [[Haruto Arima]] (Outside Perspective)
* [[Nightlight Benson]] (Outside Perspective)
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Shawn Wolfe]] (The Show Must Go On)
* [[Mel Chaplin]] (The Show Must Go On)
* [[Nate Parks]] (The Show Must Go On)
* [[Conner Higgins]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Xavier Félix Santiago Magro Rios]] (The Show Must Go On)
* [[Veronika Kristiansen]] (The Show Must Go On)
* [[Christi McLain]] (The Show Must Go On)
* [[Jay Kedves]] (Devil Watch)
* [[Mari Arendse]] (Unfinished Business)
** Quoiattraction
* [[Raegan Marlow]] (Nightfall)
* [[Isabelle Bellamy]] (The Exchange)
=== My Ace Characters ===
* [[Angel Ashworth]] (CLASH)
* [[Sam Garrett]] (CLASH)
* [[Eve Grenville]] (The Show Must Go On)
* [[Kojo Owusu]] (The Show Must Go On)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aro Characters ===
* [[Romilly Bonney]] (The Show Must Go On)
* [[Della Alvalle]] (Nightfall)
* [[Höllenhund]] (The Exchange)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Aroace Characters ===
* [[Tyler Archer]] (The Show Must Go On)
* [[Charlie Coy-Young]] (Devil Watch)
* [[Ace Alvalle]] (Nightfall)
* [[Wira]] (Unfinished Business)
* [[Xenia Megalos]] (Neon Apocalypse)
=== My Pan Characters ===
* [[Belle Starr]] (CLASH)
* [[Aalish McCasky]] (CLASH)
* [[Sophie Segal]] (CLASH)
* [[Ivory Tatton]] (Outside Perspective)
* [[Lucy Cookson]] (The Show Must Go On)
* [[Romilly Bonney]] (The Show Must Go On)
* [[Chan Smith]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
** Panflux
* [[Delilah Alexander]] (The Show Must Go On)
* [[Eden Abbey]] (The Show Must Go On)
* [[Dax Sheppard]] (Devil Watch)
* [[Owen Whalen]] (Nightfall)
* [[Aaron Woodrow]] (Unfinished Business)
=== My Omni Characters ===
* [[Jess Cobb]] (The Show Must Go On)
* [[Marten Van der Beek]] (The Exchange)
=== My Poly Characters ===
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Zef Karim]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Fluid Attraction Characters ===
* [[Rory Anker]] (The Show Must Go On)
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
* [[Rórdán O'Berne]] (Nightfall)
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]] (The Show Must Go On)
* [[Miley Sharma]] (The Show Must Go On)
* [[Owen Whalen]] (Nightfall)
* [[AI Stein]] (Neon Apocalypse)
=== My Agender Characters ===
* [[Terry Fan]] (The Show Must Go On)
* [[Ave Alvalle]] (Nightfall)
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]] (The Show Must Go On)
* [[Hal Witherspoon]] (The Show Must Go On)
* [[Aki Kazama]] (The Exchange)
=== My Bigender Characters ===
* [[Tilly Harrell]] (The Show Must Go On)
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]] (Neon Apocalypse)
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]] (Nightfall)
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]] (Nightfall)
** Anarchogender
* [[Della Alvalle]] (Nightfall)
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]] (Neon Apocalypse)
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]] (Devil Watch)
** Cassgender
* [[Lake Manivong]] (Devil Watch)
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]] (Outside Perspective)
** Vapogirl
* [[Robin Hartell]] (Outside Perspective)
** Xenrell
** Excitigender
* [[Lucy Cookson]] (The Show Must Go On)
** Helianfemme
* [[Charlie Coy-Young]] (Devil Watch)
** Silvagender
** Cottagegender
* [[Tomás Vincent]] (Nightfall)
** Phosuvial
* [[Höllenhund]] (The Exchange)
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]] (The Show Must Go On)
** Autifein
* [[Channary Soun]] (Nightfall)
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]] (The Show Must Go On)
** Cytochrome PORD
* [[Éva Bakó]] (The Show Must Go On)
** Müllerian Agenesis
* [[Lake Manivong]] (Devil Watch)
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]] (Nightfall)
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]] (The Exchange)
** Hypergonadism
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]] (CLASH)
** Yukiransexual
* [[Darko Novak]] (Outside Perspective)
** Solibroussexual
* [[Desiree Chan]] (The Show Must Go On)
** Multiaesthetic
* [[Davy Baumann]] (The Show Must Go On)
** Ambisexual
* [[Felix Adams]] (The Show Must Go On)
* [[Ġorġ Panzavecchia]] (The Show Must Go On)
* [[Rórdán O'Berne]] (Nightfall)
** Aliquissexual
* [[Víctor Valiente Zamorano]] (The Exchange)
** Disexual
* [[Cam Albuquerque]] (Neon Apocalypse)
* [[Deangelo Perkins]] (Nightfall)
=== My Other A-Spec Characters ===
* [[Belle Starr]] (CLASH)
** Autosexual
* [[Eve Grenville]] (The Show Must Go On)
** Alexmoromantic
* [[Tilly Harrell]] (The Show Must GO On)
** Divisexual
** Apresromantic
* [[Éva Bakó]] (The Show Must Go On)
** Apothi AroAce
* [[Quin Collingwood]] (The Show Must Go On)
** Omniasexual
* [[Dax Sheppard]] (Devil Watch)
** Cupiosensual
* [[Travis Graves]] (Nightfall)
** Atomosexual
* [[Ryan McNiven]] (Nightfall)
** Inataromantic
* [[Della Alvalle]] (Nightfall)
** Apothisexual
** Anattractional
* [[Ace Alvalle]] (Nightfall)
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]] (The Exchange)
** Aplatonic
* [[Finn Miller]] (Neon Apocalypse)
** Ansexual
* [[Luna Al-Hashim]] (Nightfall)
** Apressensual
* [[Isabelle Bellamy]] (The Exchange)
** Cupioromanticflux
* [[Höllenhund]] (The Exchange)
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]] (Neon Apocalypse)
** Aegosexual
* [[Angel Ashworth]] (CLASH)
** Minlutter
*[[Júlio César Carvalho Silva]] (The Show Must Go On)
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]] (Nightfall)
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]] (Outside Perspective)
** Torstellic
* [[Terry Fan]] (The Show Must Go On)
** Agenilian
* [[Quin Collingwood]] (The Show Must Go On)
** Pansyic
* [[Angel Ashworth]] (CLASH)
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]] (CLASH)
** Orientationless
* [[Book Janssen]] (The Show Must Go On)
* [[Tara Simen]] (The Show Must Go On)
* [[Bindy Abney]] (Devil Watch)
** Orientationless
* [[Monarhy Flitrabbow]] (Nightfall)
* [[Cedardrop]] (Nightfall)
* [[Chris Mullane]] (Nightfall)
* [[Micah Aung]] (Unfinished Business)
858906eff95f91523afd967bbc1d684cc220b128
269
268
2023-10-01T02:18:23Z
CheSnail
2
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Belle Starr]]
** Autosexual
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
426fe0e43b06e1e1f09f4626379e865af34a4316
272
269
2023-10-10T21:21:26Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Belle Starr]]
** Autosexual
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
70151619c18a93aeefa3b8a5d2341f37dcdf2a25
287
272
2023-10-15T18:13:16Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
f21772408d37188b3cc4bd61b4c2e74b3128785f
Santana Lopez
0
114
257
246
2023-09-22T02:26:06Z
CheSnail
2
wikitext
text/x-wiki
[[File:Santana Lopez.png|thumb|289x289px]]
'''Santana Diabla Lopez''' is a lesbian character from the musical comedy-drama series, ''Glee''.
She is a major character in the show. She was played by Naya Rivera. She first appeared in the episode ''Pilot'' and her last appearance was in ''Dreams Come True''. She was initially a major recurring character, but was promoted to a main character in season two, before getting demoted again for season six.
==Biography==
Santana served as co-captain of the Cheerios, as a member of her high school's Glee club, and was momentarily in an all-girls second Glee Club.
She has been struggling with accepting her sexuality for the majority of season two. By season three, she was outed as a lesbian.
She started school as a student at The University of Louisville, where she had been given a full scholarship for her work as a cheerleader. However, it was later revealed that she dropped out because she didn't enjoy what she was doing there. She ended up moving to New York City and becoming roommates with [[Kurt Hummel]], Rachel and Brody. She got kicked out of their apartment before eventually moving back in.
She attended NYADA extension classes for dance and had many side jobs, including being a waitress at The Spotlight Diner and starring int two commercials for Yeast I Stat. She got cast as Rachel's understudy in ''Funny Girl'', starting a feud between them that gets them both kicked out of Kurt's band. She eventually resigns as Rachel's understudy.
Mercedes tried to help get Santana in her recording deal and she became Rachel's publicist. She goes on tour with Mercedes and [[Brittany Pierce]]. She proposed to Brittany and they got married later.
==Personality==
Santana is primarily shown to be a cheerleader stereotype, quick to pass judgement and insult or bully others. She views her behavior as honesty and sees nothing wrong with it. She has no problem flaunting her social position and is promiscuous to remain on top.
She does demonstrate occasional signs of kindness, usually with the Glee Club after a good performance. She is extremely emotional at times, often for ridiculous reasons. She gets jealous easily, displaying hostility towards Rachel, Quinn, Mercedes, Lauren, Rory and Sam when they seem to be in a relationship with Puck or Brittany.
She is known to be manipulative and persuasive, as well as being very observational and perceptive. She is always finding out the secrets of others by simply watching them.
She does take her relationships with others very seriously. Whenever someone hurts those she cares about, she becomes very defensive.
She gets incredibly hostile weaknesses are exposed, but has no problem insulting others and putting others down.
==Identity==
The first time Santana and Brittany's relationship is mentioned is in ''Sectionals'', in which they were in a five-way call with other Glee Club members and Brittany mentions them having sex.
In ''Sexy'', Santana admitted to Brittany that she never liked any of the boys she's dated or had sex with and that all she wanted was Brittany, "I don't want to be with Sam, or Finn, or any of those other guys; I just want you!" She also called Artie "just a stupid boy," and made disparaging remarks about Brittany's sexual fluidity. This led many to believe she was a lesbian before it was later confirmed.
===Reception===
Most of the response to Santana's story was positive. Many felt a lot of relatability to her story of overcoming self-hatred and internalized homophobia, her experience spoke to many young queer individuals. She especially touched the hearts of many young queer women of color.<ref>[https://archive.ph/wBOsN https://collider.com/glee-santana-lopez-best-character-coming-out-naya-rivera/]</ref>
==Gallery==
<gallery>
File:Santana and Brittany.png
File:Santana Lopez 2.png
File:Santana Lopez Lady Gaga.png
File:Santana Lopez Yeast I Stat.png
File:Santana and Dani.png
File:Santana and Brittany 2.png
File:Santana Lopez slushie.png
File:Santana Lopez as Artie Abrams.png
</gallery>
==Trivia==
*Santana is the first openly lesbian character on ''Glee''.
*Santana is left-handed.
*Santana's favorite song is ''You Oughta Know'' by Alanis Morissette.
==See Also==
*[https://glee.fandom.com/wiki/Santana_Lopez Santana Lopez] on the ''Glee'' FANDOM Wiki
==Sources==
<references />
[[Category:Lesbian Characters]]
[[Category:Glee Characters]]
[[Category:Woman Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
17e5ab1de5e2e5810a242e4302946af39f399aa1
292
257
2023-10-15T18:16:44Z
CheSnail
2
wikitext
text/x-wiki
[[File:Santana Lopez.png|289x289px|right|frameless]]
'''Santana Diabla Lopez''' is a lesbian character from the musical comedy-drama series, ''Glee''.
She is a major character in the show. She was played by Naya Rivera. She first appeared in the episode ''Pilot'' and her last appearance was in ''Dreams Come True''. She was initially a major recurring character, but was promoted to a main character in season two, before getting demoted again for season six.
==Biography==
Santana served as co-captain of the Cheerios, as a member of her high school's Glee club, and was momentarily in an all-girls second Glee Club.
She has been struggling with accepting her sexuality for the majority of season two. By season three, she was outed as a lesbian.
She started school as a student at The University of Louisville, where she had been given a full scholarship for her work as a cheerleader. However, it was later revealed that she dropped out because she didn't enjoy what she was doing there. She ended up moving to New York City and becoming roommates with [[Kurt Hummel]], Rachel and Brody. She got kicked out of their apartment before eventually moving back in.
She attended NYADA extension classes for dance and had many side jobs, including being a waitress at The Spotlight Diner and starring int two commercials for Yeast I Stat. She got cast as Rachel's understudy in ''Funny Girl'', starting a feud between them that gets them both kicked out of Kurt's band. She eventually resigns as Rachel's understudy.
Mercedes tried to help get Santana in her recording deal and she became Rachel's publicist. She goes on tour with Mercedes and [[Brittany Pierce]]. She proposed to Brittany and they got married later.
==Personality==
Santana is primarily shown to be a cheerleader stereotype, quick to pass judgement and insult or bully others. She views her behavior as honesty and sees nothing wrong with it. She has no problem flaunting her social position and is promiscuous to remain on top.
She does demonstrate occasional signs of kindness, usually with the Glee Club after a good performance. She is extremely emotional at times, often for ridiculous reasons. She gets jealous easily, displaying hostility towards Rachel, Quinn, Mercedes, Lauren, Rory and Sam when they seem to be in a relationship with Puck or Brittany.
She is known to be manipulative and persuasive, as well as being very observational and perceptive. She is always finding out the secrets of others by simply watching them.
She does take her relationships with others very seriously. Whenever someone hurts those she cares about, she becomes very defensive.
She gets incredibly hostile weaknesses are exposed, but has no problem insulting others and putting others down.
==Identity==
The first time Santana and Brittany's relationship is mentioned is in ''Sectionals'', in which they were in a five-way call with other Glee Club members and Brittany mentions them having sex.
In ''Sexy'', Santana admitted to Brittany that she never liked any of the boys she's dated or had sex with and that all she wanted was Brittany, "I don't want to be with Sam, or Finn, or any of those other guys; I just want you!" She also called Artie "just a stupid boy," and made disparaging remarks about Brittany's sexual fluidity. This led many to believe she was a lesbian before it was later confirmed.
===Reception===
Most of the response to Santana's story was positive. Many felt a lot of relatability to her story of overcoming self-hatred and internalized homophobia, her experience spoke to many young queer individuals. She especially touched the hearts of many young queer women of color.<ref>[https://archive.ph/wBOsN https://collider.com/glee-santana-lopez-best-character-coming-out-naya-rivera/]</ref>
==Gallery==
<gallery>
File:Santana and Brittany.png
File:Santana Lopez 2.png
File:Santana Lopez Lady Gaga.png
File:Santana Lopez Yeast I Stat.png
File:Santana and Dani.png
File:Santana and Brittany 2.png
File:Santana Lopez slushie.png
File:Santana Lopez as Artie Abrams.png
</gallery>
==Trivia==
*Santana is the first openly lesbian character on ''Glee''.
*Santana is left-handed.
*Santana's favorite song is ''You Oughta Know'' by Alanis Morissette.
==See Also==
*[https://glee.fandom.com/wiki/Santana_Lopez Santana Lopez] on the ''Glee'' FANDOM Wiki
==Sources==
<references />
[[Category:Lesbian Characters]]
[[Category:Glee Characters]]
[[Category:Woman Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
a4ebe8a25adaf5d9eb5bb4c49e607280cdf8f1d0
Category:TV Show Characters
14
126
258
2023-09-22T02:26:44Z
CheSnail
2
Created page with "This category is for all characters that come from TV series."
wikitext
text/x-wiki
This category is for all characters that come from TV series.
48cc19c02e353456ead19dd68231686899e2712a
260
258
2023-09-22T02:28:13Z
CheSnail
2
wikitext
text/x-wiki
This category is for all characters that come from TV series.
[[Category:Characters by Media]]
d76bcf6618769f6e21d3aba4cc84a2a79b642460
Category:Characters by Media
14
127
261
2023-09-22T02:28:45Z
CheSnail
2
Created page with "A category with subcategories sorted by the type of media they are a part of."
wikitext
text/x-wiki
A category with subcategories sorted by the type of media they are a part of.
e4670cfff0dcc45fff78399a18053c7c84a07b31
Main Page
0
1
262
223
2023-09-22T02:30:13Z
CheSnail
2
wikitext
text/x-wiki
__NOTOC__
== Welcome to {{SITENAME}}! ==
This is a resource for all canonically LGBTQ+ characters throughout fiction.
== Characters by Identity ==
[[:Category:Characters by Identity|Characters by Identity]]
<gallery>
Gay flag.png|[[:Category:Gay Characters|Gay Characters]]
Lesbian flag.png|[[:Category:Lesbian Characters|Lesbian Characters]]
Gay Man flag.png|[[:Category:Gay Man Characters|Gay Man Characters]]
Bi flag.png|[[:Category:Bi Characters|Bi Characters]]
Trans flag.png|[[:Category:Trans Characters|Trans Characters]]
Aroace flag.png|[[:Category:Aroace Characters|Aroace Characters]]
Pan flag.png|[[:Category:Pan Characters|Pan Characters]]
Non-Binary flag.png|[[:Category:Non-Binary Characters|Non-Binary Characters]]
</gallery>
[[:Category:Characters by Media|Characters by Media]]
== For Contributes ==
Look into these articles if you're looking to help out with the wiki:
* [[Rules]]
* [[Editing Guide]]
* [[Guide:Character]]
fc4789b2f24fce051bdd1e18c2e5ed3473650594
Rules
0
18
270
214
2023-10-02T19:25:28Z
CheSnail
2
wikitext
text/x-wiki
== Code of Conduct ==
# Keep personal bias out of the articles you're editing. Do not make any comments about your personal dislike of a character or your opinion about a certain identity.
# Articles should be written in a standard wiki format. This means:
## Written in formal American English.
## Do not plagiarize.
## Bold text must only be used in the beginning of the article for the character's name.
## Italicized text must only be used for titles of books, shows, games or other media.
## Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
## One space/line between paragraphs.
## Add links to any other characters included on the wiki used in the article.
## Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
## Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
## With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
## Do not address the reader.
## Do not add "WIP" or author's notes.
# Do not impersonate another user.
# No troll or satirical edits.
# Do not post false or misleading information.
# Do not post spam.
# Do not make queerphobic, ableist, racist, or sexist comments.
== Content Policy ==
=== Allowed Content ===
* Characters confirmed to be queer within the work itself.
* Characters confirmed to be queer by the creator outside of the work.
* Characters confirmed to be queer by the actor of the character outside of the work.
* Characters confirmed to be queer by a writer outside of the work.
** However, writers can have conflicting/different ideas about a character, if this is the case, include which writer confirmed what.
** All characters confirmed outside of the work itself must be categorized under "Word of Gay".
* Web characters, as long as they are fictional.
* You may add your original characters '''only''' if you have them/are planning to have them in a serious work, such as a book, webseries or comic. This does not extend to fan-characters.
=== Prohibited Content ===
* Headcanons, as these are up to interpretation.
* Real individuals, this includes fictionalized versions of real individuals, such as depictions of Elton John.
* Queercoded characters, as these characters are not meant to be explicitly queer.
* Fan-characters. Original characters from an existing media are not allowed.
[[Category:Help]] [[Category:Important]]
807a6a02fee2cf92ce9ae52746d67dc9b685d191
Editing Guide
0
19
271
200
2023-10-02T19:28:57Z
CheSnail
2
wikitext
text/x-wiki
== General Editing ==
Pages should follow standard wiki formatting, which means:
# Written in formal American English.
# Do not plagiarize.
# Bold text must only be used in the beginning of the article/section of an article for the name of the term and any alternate spellings.
# Italicized text must only be used for titles of books, shows, games or other media.
# Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
# One space/line between paragraphs.
# Add links to any other terms used in the article.
# Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
# Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
# With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
# Do not address the reader.
# Do not add "WIP" or author's notes.
Additionally, personal bias should not be in these articles.
=== Titles ===
Some characters have only a first name and there may be more than one character with the same first and last name, this case, title the page "Character (Media)".
=== Categories ===
If a character identifies with a microlabel, put them in the broad category for that label. For example, if a character is cupiosexual, then they would be put into the "Ace-Spec Characters" category. This is to keep the wiki less cluttered and to have information be easier to find.
== Sourcing ==
Links should be archived, this is so that we do not lose any information. https://archive.md/ is a viable place to archive sources, but there are other cites that can be used for archiving sources.
[[Category:Help]] [[Category:Important]]
6bbacc19f136216b0e9ad872e22a848f06ab1583
Guide:Character
0
98
273
207
2023-10-11T01:22:41Z
CheSnail
2
wikitext
text/x-wiki
The article should begin with a picture of the character.
(Character) is a (label/labels) character from (media).
In the second paragraph, describe their role in the story, the actor that portrays them, the first and last episode they appear in, and any other miscellaneous information that feels important/significant.
== Biography ==
Here, include a brief description of the character's life and how their story plays out in the media they're from.
== Appearance ==
'''Use this header if the character is from a book/has no official visual reference of their appearance.'''
Here, describe what the character looks like with the details that are available.
== Personality ==
Here, discuss the character's personality and what they are like within the work.
== Identity ==
Here, explore how the identity was revealed and how it is handled in the work itself. If the identity was revealed outside of the work, discuss how it was revealed and which of the individuals involved in the work spoke about it.
=== Reception ===
In this section, discuss the general and fan response to the character in relation to their identity.
== Gallery ==
Here, you can include any other pictures of the character that feel significant. This can include promotional material, screencaps from the show, or images of the character with the flag of their identity.
<gallery>
Example.jpg
</gallery>
== Trivia ==
* Here, list any trivia about the character.
== See Also ==
* Include a link to any official information about the character
== Tropes ==
* If the character falls into any tropes
* Include them here in a bulleted list
* You should also include a link to more information about the trope itself
[[List of Tropes]] page may be used as a reference.
== Sources ==
This is where your sources will be.
[[Category:Guides]] [[Category:Help]] [[Category:Important]]
fb294fd2a0761ee81a05d80ad25152ae76e6880a
283
273
2023-10-15T16:31:29Z
CheSnail
2
wikitext
text/x-wiki
The article should begin with a picture of the character or a picture of the media they are from if there is no official appearance for them.
(Character) is a (label/labels) character from (media).
In the second paragraph, describe their role in the story, the actor that portrays them, the first and last episode they appear in, and any other miscellaneous information that feels important/significant.
== Biography ==
Here, include a brief description of the character's life and how their story plays out in the media they're from.
== Appearance ==
'''Use this header if the character is from a book/has no official visual reference of their appearance.'''
Here, describe what the character looks like with the details that are available.
== Personality ==
Here, discuss the character's personality and what they are like within the work.
== Identity ==
Here, explore how the identity was revealed and how it is handled in the work itself. If the identity was revealed outside of the work, discuss how it was revealed and which of the individuals involved in the work spoke about it.
=== Reception ===
In this section, discuss the general and fan response to the character in relation to their identity.
== Gallery ==
Here, you can include any other pictures of the character that feel significant. This can include promotional material, screencaps from the show, or images of the character with the flag of their identity.
<gallery>
Example.jpg
</gallery>
== Trivia ==
* Here, list any trivia about the character.
== See Also ==
* Include a link to any official information about the character
== Tropes ==
* If the character falls into any tropes
* Include them here in a bulleted list
* You should also include a link to more information about the trope itself
[[List of Tropes]] page may be used as a reference.
== Sources ==
This is where your sources will be.
[[Category:Guides]] [[Category:Help]] [[Category:Important]]
4cbbfc971c80661120bb52bf85f3d0eb09af7711
File:Kurt Hummel.png
6
128
274
2023-10-15T15:55:49Z
CheSnail
2
wikitext
text/x-wiki
Kurt Hummel from Glee
272387e7843814b1d0972954ec8fabacf9fc3151
File:Kurt Hummel 2.png
6
129
275
2023-10-15T15:56:59Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Kurt Hummel and Blaine Anderson.png
6
130
276
2023-10-15T15:57:20Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Kurt Hummel and Blaine Anderson 2.png
6
131
277
2023-10-15T15:57:41Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Kurt Hummel 3.png
6
132
278
2023-10-15T15:57:57Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Kurt Hummel and Blaine Anderson 3.png
6
133
279
2023-10-15T15:58:19Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Kurt Hummel 4.png
6
134
280
2023-10-15T15:58:40Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Kurt Hummel 5.png
6
135
281
2023-10-15T15:58:58Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Kurt Hummel 6.png
6
136
282
2023-10-15T15:59:21Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Kurt Hummel
0
137
284
2023-10-15T16:32:32Z
CheSnail
2
Created page with "[[File:Kurt Hummel.png|thumb|331x331px]] '''Kurt Elizabeth Hummel''' is a gay character from the musical comedy-drama, ''Glee''. He is a main character in the show. He is played by Chris Colfer. He first appeared in the episode ''Pilot'', and his last appearance was in ''Dreams Come True''. ==Biography== Kurt is closeted until he comes out to Mercedes and eventually his father. He had a crush on Finn and tried to pursue him, despite Finn being straight. He set up his fa..."
wikitext
text/x-wiki
[[File:Kurt Hummel.png|thumb|331x331px]]
'''Kurt Elizabeth Hummel''' is a gay character from the musical comedy-drama, ''Glee''.
He is a main character in the show. He is played by Chris Colfer. He first appeared in the episode ''Pilot'', and his last appearance was in ''Dreams Come True''.
==Biography==
Kurt is closeted until he comes out to Mercedes and eventually his father. He had a crush on Finn and tried to pursue him, despite Finn being straight. He set up his father with Finn's mother for the sake of bringing him closer to Finn. In season two, he meets [[Blaine Anderson]] and falls for him at first sight. After being the target of bullying, mostly from [[Dave Karofsky]], he transfers to Dalton Academy out of fear for his life. He and Blaine pursue a relationship in ''Original Song''.
His relationship with Blaine goes through several obstacles, including Kurt flirting with another guy and Blaine having an affair while Kurt is in New York. They manage to recover from their past issues and get engage in ''Love, Love, Love''. The break up again before ''Loser Like Me'', before getting back together in ''A Wedding''.
==Personality==
Kurt has a very high standard for himself.
In the beginning of the show, he appears somewhat superficial and obsessed with the latest fashions and his hair. While many assume him to be a snob due to his behavior, it is simply a mask he wears to hide his insecurities and fears.
He is very smart and has a quick-witted sense of humor, while also using intelligent vocabulary. He can also be manipulative at times, once tricking Rachel into dressing more like the end-of-movie Sandy from ''Grease'' to win over Finn's affection, knowing that Finn is attracted to the opposite look.
A trait that he and his father have in common is that they both try their best to keep strong. He is very lonely and because of his loneliness, his romantic interests in certain boys can be unsettling and intense. When he does develop a crush, he seems to fall hard.
Despite his superficial exterior, he often prioritizes those he cares about more than himself, especially when it comes to his father. He can be a diva at times, but he deeply cares for his fellow Glee Club members.
He has a tendency to lash out and get defensive under pressure. He's ambitious, but always generous enough to appreciate real talent. He is very good at keeping secrets as well. He is shown to be caring to others, even those who he isn't close with.
He has a strong "family first" mentality and is an extremely forgiving person.
==Identity==
Kurt comes out as gay to Mercedes during the episode ''Acafellas'', and to his dad in the episode ''Preggars''.
===Reception===
Kurt Hummel is often hailed as breakthrough representation, however some feel as though he's stereotypical and is harmful representation for gay men.<ref>[https://archive.ph/AER3b https://www.theguardian.com/tv-and-radio/tvandradioblog/2011/mar/15/kurt-hummel-glee-gay]</ref>
==Gallery==
<gallery>
File:Kurt Hummel 2.png
File:Kurt Hummel and Blaine Anderson.png
File:Kurt Hummel and Blaine Anderson 2.png
File:Kurt Hummel 3.png
File:Kurt Hummel and Blaine Anderson 3.png
File:Kurt Hummel 4.png
File:Kurt Hummel 5.png
File:Kurt Hummel 6.png
</gallery>
==Trivia==
*Kurt was the first openly gay character in ''Glee''.
*Kurt's name comes from the character "Kurt von Trapp" from ''The Sound of Music'' and the Hummel collector dolls with rosy cheeks.
==See Also==
*[https://glee.fandom.com/wiki/Kurt_Hummel Kurt Hummel's] page on the ''Glee'' FANDOM Wiki
==Tropes==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/CampGay Camp Gay]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetKey Closet Key]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/QueerCharacterQueerActor Queer Character, Queer Actor]
* [http://tvtropes.org/pmwiki/pmwiki.php/Main/TransparentCloset Transparent Closet]
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Glee Characters]]
[[Category:Man Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
213f3415c91c691ce443e741af85ec2c83a493ef
288
284
2023-10-15T18:14:53Z
CheSnail
2
wikitext
text/x-wiki
[[File:Kurt Hummel.png|thumb|331x331px]]
'''Kurt Elizabeth Hummel''' is a gay character from the musical comedy-drama series, ''Glee''.
He is a main character in the show. He is played by Chris Colfer. He first appeared in the episode ''Pilot'', and his last appearance was in ''Dreams Come True''.
==Biography==
Kurt is closeted until he comes out to Mercedes and eventually his father. He had a crush on Finn and tried to pursue him, despite Finn being straight. He set up his father with Finn's mother for the sake of bringing him closer to Finn. In season two, he meets [[Blaine Anderson]] and falls for him at first sight. After being the target of bullying, mostly from [[Dave Karofsky]], he transfers to Dalton Academy out of fear for his life. He and Blaine pursue a relationship in ''Original Song''.
His relationship with Blaine goes through several obstacles, including Kurt flirting with another guy and Blaine having an affair while Kurt is in New York. They manage to recover from their past issues and get engage in ''Love, Love, Love''. The break up again before ''Loser Like Me'', before getting back together in ''A Wedding''.
==Personality==
Kurt has a very high standard for himself.
In the beginning of the show, he appears somewhat superficial and obsessed with the latest fashions and his hair. While many assume him to be a snob due to his behavior, it is simply a mask he wears to hide his insecurities and fears.
He is very smart and has a quick-witted sense of humor, while also using intelligent vocabulary. He can also be manipulative at times, once tricking Rachel into dressing more like the end-of-movie Sandy from ''Grease'' to win over Finn's affection, knowing that Finn is attracted to the opposite look.
A trait that he and his father have in common is that they both try their best to keep strong. He is very lonely and because of his loneliness, his romantic interests in certain boys can be unsettling and intense. When he does develop a crush, he seems to fall hard.
Despite his superficial exterior, he often prioritizes those he cares about more than himself, especially when it comes to his father. He can be a diva at times, but he deeply cares for his fellow Glee Club members.
He has a tendency to lash out and get defensive under pressure. He's ambitious, but always generous enough to appreciate real talent. He is very good at keeping secrets as well. He is shown to be caring to others, even those who he isn't close with.
He has a strong "family first" mentality and is an extremely forgiving person.
==Identity==
Kurt comes out as gay to Mercedes during the episode ''Acafellas'', and to his dad in the episode ''Preggars''.
===Reception===
Kurt Hummel is often hailed as breakthrough representation, however some feel as though he's stereotypical and is harmful representation for gay men.<ref>[https://archive.ph/AER3b https://www.theguardian.com/tv-and-radio/tvandradioblog/2011/mar/15/kurt-hummel-glee-gay]</ref>
==Gallery==
<gallery>
File:Kurt Hummel 2.png
File:Kurt Hummel and Blaine Anderson.png
File:Kurt Hummel and Blaine Anderson 2.png
File:Kurt Hummel 3.png
File:Kurt Hummel and Blaine Anderson 3.png
File:Kurt Hummel 4.png
File:Kurt Hummel 5.png
File:Kurt Hummel 6.png
</gallery>
==Trivia==
*Kurt was the first openly gay character in ''Glee''.
*Kurt's name comes from the character "Kurt von Trapp" from ''The Sound of Music'' and the Hummel collector dolls with rosy cheeks.
==See Also==
*[https://glee.fandom.com/wiki/Kurt_Hummel Kurt Hummel's] page on the ''Glee'' FANDOM Wiki
==Tropes==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/CampGay Camp Gay]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetKey Closet Key]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/QueerCharacterQueerActor Queer Character, Queer Actor]
* [http://tvtropes.org/pmwiki/pmwiki.php/Main/TransparentCloset Transparent Closet]
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Glee Characters]]
[[Category:Man Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
8a6785f0b3407f405af1c7cebe78f86958f9525b
290
288
2023-10-15T18:16:05Z
CheSnail
2
wikitext
text/x-wiki
[[File:Kurt Hummel.png|331x331px|right|frameless]]
'''Kurt Elizabeth Hummel''' is a gay character from the musical comedy-drama series, ''Glee''.
He is a main character in the show. He is played by Chris Colfer. He first appeared in the episode ''Pilot'', and his last appearance was in ''Dreams Come True''.
==Biography==
Kurt is closeted until he comes out to Mercedes and eventually his father. He had a crush on Finn and tried to pursue him, despite Finn being straight. He set up his father with Finn's mother for the sake of bringing him closer to Finn. In season two, he meets [[Blaine Anderson]] and falls for him at first sight. After being the target of bullying, mostly from [[Dave Karofsky]], he transfers to Dalton Academy out of fear for his life. He and Blaine pursue a relationship in ''Original Song''.
His relationship with Blaine goes through several obstacles, including Kurt flirting with another guy and Blaine having an affair while Kurt is in New York. They manage to recover from their past issues and get engage in ''Love, Love, Love''. The break up again before ''Loser Like Me'', before getting back together in ''A Wedding''.
==Personality==
Kurt has a very high standard for himself.
In the beginning of the show, he appears somewhat superficial and obsessed with the latest fashions and his hair. While many assume him to be a snob due to his behavior, it is simply a mask he wears to hide his insecurities and fears.
He is very smart and has a quick-witted sense of humor, while also using intelligent vocabulary. He can also be manipulative at times, once tricking Rachel into dressing more like the end-of-movie Sandy from ''Grease'' to win over Finn's affection, knowing that Finn is attracted to the opposite look.
A trait that he and his father have in common is that they both try their best to keep strong. He is very lonely and because of his loneliness, his romantic interests in certain boys can be unsettling and intense. When he does develop a crush, he seems to fall hard.
Despite his superficial exterior, he often prioritizes those he cares about more than himself, especially when it comes to his father. He can be a diva at times, but he deeply cares for his fellow Glee Club members.
He has a tendency to lash out and get defensive under pressure. He's ambitious, but always generous enough to appreciate real talent. He is very good at keeping secrets as well. He is shown to be caring to others, even those who he isn't close with.
He has a strong "family first" mentality and is an extremely forgiving person.
==Identity==
Kurt comes out as gay to Mercedes during the episode ''Acafellas'', and to his dad in the episode ''Preggars''.
===Reception===
Kurt Hummel is often hailed as breakthrough representation, however some feel as though he's stereotypical and is harmful representation for gay men.<ref>[https://archive.ph/AER3b https://www.theguardian.com/tv-and-radio/tvandradioblog/2011/mar/15/kurt-hummel-glee-gay]</ref>
==Gallery==
<gallery>
File:Kurt Hummel 2.png
File:Kurt Hummel and Blaine Anderson.png
File:Kurt Hummel and Blaine Anderson 2.png
File:Kurt Hummel 3.png
File:Kurt Hummel and Blaine Anderson 3.png
File:Kurt Hummel 4.png
File:Kurt Hummel 5.png
File:Kurt Hummel 6.png
</gallery>
==Trivia==
*Kurt was the first openly gay character in ''Glee''.
*Kurt's name comes from the character "Kurt von Trapp" from ''The Sound of Music'' and the Hummel collector dolls with rosy cheeks.
==See Also==
*[https://glee.fandom.com/wiki/Kurt_Hummel Kurt Hummel's] page on the ''Glee'' FANDOM Wiki
==Tropes==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/CampGay Camp Gay]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetKey Closet Key]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/QueerCharacterQueerActor Queer Character, Queer Actor]
* [http://tvtropes.org/pmwiki/pmwiki.php/Main/TransparentCloset Transparent Closet]
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Glee Characters]]
[[Category:Man Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
2a0232b81d6e6f908c44dccb08e178034da157b3
293
290
2023-10-15T18:32:16Z
CheSnail
2
wikitext
text/x-wiki
[[File:Kurt Hummel.png|331x331px|right|frameless]]
'''Kurt Elizabeth Hummel''' is a gay character from the musical comedy-drama series, ''Glee''.
He is a main character in the show. He is played by Chris Colfer. He first appeared in the episode ''Pilot'', and his last appearance was in ''Dreams Come True''.
==Biography==
Kurt is closeted until he comes out to Mercedes and eventually his father. He had a crush on Finn and tried to pursue him, despite Finn being straight. He set up his father with Finn's mother for the sake of bringing him closer to Finn. In season two, he meets [[Blaine Anderson]] and falls for him at first sight. After being the target of bullying, mostly from [[Dave Karofsky]], he transfers to Dalton Academy out of fear for his life. He and Blaine pursue a relationship in ''Original Song''.
His relationship with Blaine goes through several obstacles, including Kurt flirting with another guy and Blaine having an affair while Kurt is in New York. They manage to recover from their past issues and get engage in ''Love, Love, Love''. The break up again before ''Loser Like Me'', before getting back together in ''A Wedding''.
==Personality==
Kurt has a very high standard for himself.
In the beginning of the show, he appears somewhat superficial and obsessed with the latest fashions and his hair. While many assume him to be a snob due to his behavior, it is simply a mask he wears to hide his insecurities and fears.
He is very smart and has a quick-witted sense of humor, while also using intelligent vocabulary. He can also be manipulative at times, once tricking Rachel into dressing more like the end-of-movie Sandy from ''Grease'' to win over Finn's affection, knowing that Finn is attracted to the opposite look.
A trait that he and his father have in common is that they both try their best to keep strong. He is very lonely and because of his loneliness, his romantic interests in certain boys can be unsettling and intense. When he does develop a crush, he seems to fall hard.
Despite his superficial exterior, he often prioritizes those he cares about more than himself, especially when it comes to his father. He can be a diva at times, but he deeply cares for his fellow Glee Club members.
He has a tendency to lash out and get defensive under pressure. He's ambitious, but always generous enough to appreciate real talent. He is very good at keeping secrets as well. He is shown to be caring to others, even those who he isn't close with.
He has a strong "family first" mentality and is an extremely forgiving person.
==Identity==
Kurt comes out as gay to Mercedes during the episode ''Acafellas'', and to his dad in the episode ''Preggars''.
===Reception===
Kurt Hummel is often hailed as breakthrough representation, however some feel as though he's stereotypical and is harmful representation for gay men.<ref>[https://archive.ph/AER3b https://www.theguardian.com/tv-and-radio/tvandradioblog/2011/mar/15/kurt-hummel-glee-gay]</ref>
==Gallery==
<gallery>
File:Kurt Hummel 2.png
File:Kurt Hummel and Blaine Anderson.png
File:Kurt Hummel and Blaine Anderson 2.png
File:Kurt Hummel 3.png
File:Kurt Hummel and Blaine Anderson 3.png
File:Kurt Hummel 4.png
File:Kurt Hummel 5.png
File:Kurt Hummel 6.png
</gallery>
==Trivia==
*Kurt was the first openly gay character in ''Glee''.
*Kurt's name comes from the character "Kurt von Trapp" from ''The Sound of Music'' and the Hummel collector dolls with rosy cheeks.
==See Also==
*[https://glee.fandom.com/wiki/Kurt_Hummel Kurt Hummel] on the ''Glee'' FANDOM Wiki
==Tropes==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/CampGay Camp Gay]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetKey Closet Key]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/QueerCharacterQueerActor Queer Character, Queer Actor]
* [http://tvtropes.org/pmwiki/pmwiki.php/Main/TransparentCloset Transparent Closet]
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Glee Characters]]
[[Category:Man Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
e16e17889ee18367bbdf38221f949bbaf13db1c0
File:Man flag.png
6
138
285
2023-10-15T16:33:34Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Category:Man Characters
14
139
286
2023-10-15T16:34:04Z
CheSnail
2
Created page with "[[File:Man flag.png|frameless|center|200px]] [[Category:Characters by Identity]]"
wikitext
text/x-wiki
[[File:Man flag.png|frameless|center|200px]]
[[Category:Characters by Identity]]
ed6502f2d3e635c766c4f4597d478bb3187dce4c
File:Spencer Porter.png
6
140
294
2023-10-15T18:42:02Z
CheSnail
2
wikitext
text/x-wiki
Spencer Porter from Glee
ee4a789d525b770f54a085ceec5acf670ec00c96
Spencer Porter
0
141
295
2023-10-15T18:45:13Z
CheSnail
2
Created page with "[[File:Spencer Porter.png|right|frameless|300x300px]] '''Spencer Porter''' is a gay character from the musical comedy-drama series, ''Glee''. He is a recurring character on the show. He is played Marshall Williams. He firsts appeared in the episode ''Loser Like Me'', and his last appearance was in ''Dreams Come True''. ==Biography== Spencer was on the football team at William McKinley High School, and joins the Glee Club during ''The Hurt Locker, Part Two''. As of the e..."
wikitext
text/x-wiki
[[File:Spencer Porter.png|right|frameless|300x300px]]
'''Spencer Porter''' is a gay character from the musical comedy-drama series, ''Glee''.
He is a recurring character on the show. He is played Marshall Williams. He firsts appeared in the episode ''Loser Like Me'', and his last appearance was in ''Dreams Come True''.
==Biography==
Spencer was on the football team at William McKinley High School, and joins the Glee Club during ''The Hurt Locker, Part Two''. As of the end of the show, he is an alumni at William McKinley High School.
==Personality==
Spencer describes himself as a "post-modern gay teen."
He is seen as arrogant and petty; however, underneath his bad persona, he is a good-natured, friendly, charming and sympathetic individual. He is fiercely loyal to his friends and is quick to come to their defense at the first sign of a threat. He is a warm and loving person deep down.
He is, generally, easy going, spending most of the time relaxing and enjoying whatever he's doing. When not dealing with a problem, he can be jovial and friendly, usually trying to keep his rudeness under control for the sake of relaxation and contentment.
==Identity==
Spencer is openly gay, and doesn't want to be put into a box because of it, stating to [[Kurt Hummel]] that he hasn't seen ''Newies'', doesn't listen to Lady Gaga, and doesn't write fanfic where Archie and Jughead are "hot for each other." He is in a relationship with [[Alistair (Glee)|Alistair]].
===Reception===
Spencer was praised when he first appeared, being seen as a groundbreaking divergence from the gay representation seen in ''Glee'' until season six.<ref>[https://archive.ph/Qut9n https://www.bustle.com/articles/61421-spencer-from-glee-actor-marshall-williams-is-shaking-things-up-in-the-final-season]</ref>
==See Also==
*[https://glee.fandom.com/wiki/Spencer_Porter Spencer Porter] on the ''Glee'' FANDOM Wiki
==Tropes==
*[https://tvtropes.org/pmwiki/pmwiki.php/Main/ManlyGay Manly Gay]
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Glee Characters]]
[[Category:Man Characters]]
[[Category:Minor Characters]]
[[Category:TV Show Characters]]
780e0d8ea361800e230508ea9654712648b0a79a
Category:Minor Characters
14
142
296
2023-10-15T18:45:43Z
CheSnail
2
Created page with "This category is for any and all minor characters in whatever media they are from."
wikitext
text/x-wiki
This category is for any and all minor characters in whatever media they are from.
c61238a117ee852676c82b603c75f14f5be96abd
User:CheSnail
2
2
297
287
2023-10-15T18:47:18Z
CheSnail
2
/* Favorite Media */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Queer Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
7374716a5e797e63893604ccecaa184af9fef41f
309
297
2023-10-16T00:07:12Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Queer Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
* [[Erin Berkowitz]]
18cfdb9ebd07d4ac11598a7e74240c47cc6397cb
310
309
2023-10-19T00:35:03Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Queer Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
* [[Leo Koumans]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
* [[Erin Berkowitz]]
5bdf4ff8b2fa5a6ba33ceb3e43ca6abdc3e47e7a
311
310
2023-10-23T00:44:12Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Queer Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
* [[Leo Koumans]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
* [[Erin Berkowitz]]
* [[Gio Soto]]
7ed9d744ab5ed81433936b1268fb8678aef1b900
319
311
2023-10-23T13:41:28Z
CheSnail
2
/* Favorite Gay Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring (webcomic)|Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Queer Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
* [[Leo Koumans]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
* [[Erin Berkowitz]]
* [[Gio Soto]]
5d386a0942b884f9928d465e227b6647c0104455
322
319
2023-10-26T00:42:19Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring (webcomic)|Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Queer Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
* [[Leo Koumans]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
* [[Kenny Williamson]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
* [[Erin Berkowitz]]
* [[Gio Soto]]
a429365cea05cafd75c2849b514f4b4602176c2a
323
322
2023-10-29T02:08:53Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring (webcomic)|Charlie Spring]]
* [[Hikaru Sulu]]
* [[Conner McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Queer Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
* [[Leo Koumans]]
* [[Kanna Fujimoto]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
* [[Kanna Fujimoto]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
* [[Kenny Williamson]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
* [[Erin Berkowitz]]
* [[Gio Soto]]
f4bf292e3c5aa9f3991e6076f2e7a7bfc7722613
331
323
2023-10-31T02:33:20Z
CheSnail
2
/* Favorite Media */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring (webcomic)|Charlie Spring]]
* [[Hikaru Sulu]]
* [[Connor McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Queer Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
* [[Leo Koumans]]
* [[Kanna Fujimoto]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
* [[Kanna Fujimoto]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
* [[Kenny Williamson]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** [[Gamyflux]]
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
* [[Erin Berkowitz]]
* [[Gio Soto]]
35058b8669ab299c59e70f8af622e39d28410357
342
331
2023-11-10T02:21:57Z
CheSnail
2
/* My Queer Characters */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring (webcomic)|Charlie Spring]]
* [[Hikaru Sulu]]
* [[Connor McKinley]]
* [[Whizzer]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Queer Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
* [[Leo Koumans]]
* [[Kanna Fujimoto]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
* [[Kanna Fujimoto]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
* [[Kenny Williamson]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** Gamyflux
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
* [[Erin Berkowitz]]
* [[Gio Soto]]
c02c7e7a4f07383ae103d01f2cd9a7cab1ba489c
343
342
2023-11-10T02:24:49Z
CheSnail
2
/* Favorite Media */
wikitext
text/x-wiki
I'm Ché. My pronouns are he/him and ey/em. I'm gay oriented aroace and a trans man. Representation is important to me, so I created this wiki to showcase canonically queer characters. I am a story writer and character designer with many queer characters of my own.
== Favorite Media ==
Some of my favorite media with queer rep include:
* The Star Trek franchise
* Bojack Horseman
* Glee
* Saved By The Bell (2020)
* Crazy Ex-Girlfriend
* Heartstopper
* The Stargate franchise
* Ready Player One
* Falsettos
* Rent
* Book of Mormon
* South Park
=== Favorite Gay Characters ===
* [[Camile Wray]]
* [[Kurt Hummel]]
* [[Spencer Porter]]
* [[Blaine Anderson]]
* [[Charlie Spring (webcomic)|Charlie Spring]]
* [[Hikaru Sulu]]
* [[Connor McKinley]]
* [[Whizzer Brown]]
* [[Craig Tucker]]
* [[Tweek Tweak]]
* [[Malcolm Reed]]
=== Favorite Lesbian Characters ===
* [[Santana Lopez]]
* [[Jett Reno]]
* [[Tara Jones]]
* [[Tara Maclay]]
* [[Helen Harris]]
* [[Willow Rosenberg]]
=== Favorite Gay Man Characters ===
* [[Paul Stamets]]
* [[Hugh Culber]]
=== Favorite Bi Characters ===
* [[Brittany Pierce]]
* [[Nick Nelson]]
* [[Darryl Whitefeather]]
* [[Seven of Nine]]
* [[Raffi Musiker]]
=== Favorite Trans Characters ===
* [[Unique Adams]]
* [[Sheldon Beiste]]
* [[Lexi Haddad-DeFabrizio]]
* [[Elle Argent]]
* [[Gray Tal]]
=== Favorite Omni Characters ===
* [[Elim Garak]]
=== Favorite Ace Characters ===
* [[Todd Chavez]]
=== Favorite AroAce Characters ===
* [[Isaac Henderson]]
=== Favorite Non-Binary Characters ===
* [[Adira Tal]]
* [[Frankie Stein (G3)]]
=== Favorite Unlabeled Queer Characters ===
* [[Ethan Harris]]
=== Favorite Polyamorous Characters ===
* [[Phlox (Star Trek: Enterprise)]]
=== Favorite Unspecified Queer Characters ===
* [[Beckett Mariner]]
* [[Jadzia Dax]]
* [[Julian Bashir]]
* [[Puen (Project S: SPIKE)]]
== Queer Headcanons ==
Daniel Jackson (Stargate)
* Demiromantic-Demisexual
Sam Carter (Stargate)
* Biromantic-Asexual
John Sheppard (Stargate: Atlantis)
* Aromantic-Allosexual
Will Riker (Star Trek)
* Pan and transmasc (T4T)
Deanna Troi (Star Trek)
* Transfem (T4T)
Stan Marsh (South Park)
* Questioning gender and sexuality
Haruka Nanase (Free!)
* Gay oriented aroace
Tobio Kageyama (Haikyuu!!)
* Aroace
Rodney McKay (Stargate)
* Transmasc
Jean-Luc Picard (Star Trek)
* Aromantic
Roz (EMO the Musical)
* Bi
== My Queer Characters ==
=== My Gay Characters ===
* [[Josse Segal]]
* [[Basil Starr]]
* [[Zack Harper]]
* [[Ode Shadow]]
* [[Cullen Bruce]]
* [[Jorgino Etienam Gourriel]]
* [[Nick O'Malley]]
* [[Caleb Tennyson]]
* [[Jesse Alexander]]
* [[Joel Coy-Young]]
* [[Caolán Neville]]
* [[Jair Avenida Caballo]]
* [[Bram Klein]]
* [[Rowan Jin]]
* [[Daniel Gevorgyan]]
* [[Finn Miller]]
** Homospike
* [[Christos Metaxas]]
* [[Micah Aung]]
* [[Tam Kadosh]]
* [[Leo Koumans]]
* [[Kanna Fujimoto]]
=== My Lesbian Characters ===
* [[Phượng Hoàng]]
* [[Jewel Baumgartner]]
* [[Iris Hoover-Henderson]]
* [[Eve Grenville]]
* [[Kalzetta Sultana]]
* [[Rena Ingram]]
* [[Gwen Dale]]
* [[Delilah Alexander]]
* [[Yamila Acuna Zegarra]]
* [[Channary Soun]]
* [[Julia Aiza Villa]]
* [[Megan Young]]
* [[Höllenhund]]
=== My Gay Man Characters ===
* [[Zack Harper]]
** Veldian
* [[Darko Novak]]
* [[Caolán Neville]]
** Uranian
* [[Jair Avenida Caballo]]
** Uranian
* [[Rowan Jin]]
** Turian
* [[Víctor Valiente Zamorano]]
* [[Simon Lefèvre]]
* [[Aaron Woodrow]]
* [[Alexis Pachis]]
=== My Bi Characters ===
* [[Pierce Abraham]]
* [[Belle Starr]]
* [[Darko Novak]]
* [[Pièrre Beaulieu]]
* [[Roz Beridze]]
* [[Romilly Bonney]]
* [[Desiree Chan]]
* [[Don Holland]]
* [[Conner Higgins]]
* [[Jesse Alexander]]
* [[Lake Manivong]]
* [[Quinn Ó Rinn]]
* [[Travis Graves]]
* [[Tomás Vincent]]
* [[Bram Klein]]
* [[Menna Elrashidy]]
** Bicurious
* [[Jett Kim]]
* [[Wira]]
* [[Deangelo Perkins]]
** Offsexual
* [[Jena Allen]]
* [[Sadie Kim]]
* [[Jeremy Baiton]]
* [[Kanna Fujimoto]]
=== My Trans Characters ===
* [[Angel Ashworth]]
** Tranmasc
* [[Jewel Baumgartner]]
* [[Robin Hartell]]
* [[Iris Hoover-Henderson]]
** Transfem
* [[Tilly Harrell]]
** Transfem
* [[Kalzetta Sultana]]
** Transneutral
* [[Miley Sharma]]
* [[Kira Varley]]
** Transfem
* [[Hal Witherspoon]]
** Transfluid
* [[Quin Collingwood]]
* [[Charlie Coy-Young]]
* [[Yamila Acuna Zegarra]]
** Transfem
* [[Cedardrop]]
** Transfem
* [[Ryan McNiven]]
* [[Aki Kazama]]
* [[Menna Elrashidy]]
** Transfem
* [[Simon Lefèvre]]
** Transneutral
* [[Mari Arendse]]
** Transfem
* [[Wira]]
** Transmasc
* [[Finn Miller]]
** Transmasc
* [[Tam Kadosh]]
* [[Alexis Pachis]]
* [[Höllenhund]]
** Transsex
* [[Xenia Megalos]]
** Transoutherine
=== My Questioning Characters ===
* [[Ven Jackson]]
* [[Haruto Arima]]
* [[Nightlight Benson]]
* [[Silver Andrés Bien-Aimé]]
* [[Shawn Wolfe]]
* [[Mel Chaplin]]
* [[Nate Parks]]
* [[Conner Higgins]]
* [[Kojo Owusu]]
* [[Xavier Félix Santiago Magro Rios]]
* [[Veronika Kristiansen]]
* [[Christi McLain]]
* [[Jay Kedves]]
* [[Mari Arendse]]
** Quoiattraction
* [[Raegan Marlow]]
* [[Isabelle Bellamy]]
=== My Ace Characters ===
* [[Angel Ashworth]]
* [[Sam Garrett]]
* [[Eve Grenville]]
* [[Kojo Owusu]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aro Characters ===
* [[Romilly Bonney]]
* [[Della Alvalle]]
* [[Höllenhund]]
* [[Xenia Megalos]]
=== My Aroace Characters ===
* [[Tyler Archer]]
* [[Charlie Coy-Young]]
* [[Ace Alvalle]]
* [[Wira]]
* [[Xenia Megalos]]
=== My Pan Characters ===
* [[Belle Starr]]
* [[Aalish McCasky]]
* [[Sophie Segal]]
* [[Ivory Tatton]]
* [[Lucy Cookson]]
* [[Romilly Bonney]]
* [[Chan Smith]]
* [[Miley Sharma]]
** Panflux
* [[Delilah Alexander]]
* [[Eden Abbey]]
* [[Dax Sheppard]]
* [[Owen Whalen]]
* [[Aaron Woodrow]]
=== My Omni Characters ===
* [[Jess Cobb]]
* [[Marten Van der Beek]]
=== My Poly Characters ===
* [[Hal Witherspoon]]
* [[Zef Karim]]
* [[Aki Kazama]]
* [[Kenny Williamson]]
=== My Fluid Attraction Characters ===
* [[Rory Anker]]
** Resexual
=== My Polyamorous Characters ===
* [[Quin Collingwood]]
* [[Bindy Abney]]
* [[Rórdán O'Berne]]
** Gamyflux
=== My Non-Binary Characters ===
* [[Kalzetta Sultana]]
* [[Miley Sharma]]
* [[Owen Whalen]]
* [[AI Stein]]
=== My Agender Characters ===
* [[Terry Fan]]
* [[Ave Alvalle]]
=== My Genderfluid Characters ===
* [[Silver Andrés Bien-Aimé]]
* [[Hal Witherspoon]]
* [[Aki Kazama]]
=== My Bigender Characters ===
* [[Tilly Harrell]]
** Melarvorean
** Non-Bxnary
* [[Alexis Pachis]]
** Aetherium
** Boyish
=== My Gender Neutral Characters ===
* [[Robin Hartell]]
** Neugender
=== My Androgynous Characters ===
* [[Billie Mills]]
** Finandrogyne
=== My Abinary Characters ===
* [[Owen Whalen]]
** Anarchogender
* [[Della Alvalle]]
** Voidgirl
=== My Outherine Characters ===
* [[Xenia Megalos]]
** Anonbinary
=== My Genderless Characters ===
* [[Xenia Megalos]]
** Neutrois
=== My Uingender Characters ===
* [[Dax Shepaprd]]
** Cassgender
* [[Lake Manivong]]
** Adamasgender
=== My Xenogender Characters ===
* [[Jewel Baumgartner]]
** Vapogirl
* [[Robin Hartell]]
** Xenrell
** Excitigender
* [[Lucy Cookson]]
** Helianfemme
* [[Charlie Coy-Young]]
** Silvagender
** Cottagegender
* [[Tomás Vincent]]
** Phosuvial
* [[Höllenhund]]
** Hellhoundgender
** Anler
=== My Neurogender Characters ===
* [[Eve Grenville]]
** Autifein
* [[Channary Soun]]
** Autigender
=== My Demigender Characters ===
* [[Luna Al-Hashim]]
** Uindemigender
** Demigirl
=== My Intersex Characters ===
* [[Júlio César Carvalho Silva]]
** Cytochrome PORD
* [[Éva Bakó]]
** Müllerian Agenesis
* [[Lake Manivong]]
** 45,X/46,XY Mosaicism
* [[Ace Alvalle]]
** 49,XXXXY Syndrome
* [[Jair Avenida Caballo]]
** Hypergonadism
* [[Mari Arendse]]
** AMS
=== My Other M-Spec Characters ===
* [[Anarchy Garcia]]
** Yukiransexual
* [[Darko Novak]]
** Solibroussexual
* [[Desiree Chan]]
** Multiaesthetic
* [[Davy Baumann]]
** Ambisexual
* [[Felix Adams]]
* [[Ġorġ Panzavecchia]]
* [[Rórdán O'Berne]]
** Aliquissexual
* [[Víctor Valiente Zamorano]]
** Disexual
* [[Cam Albuquerque]]
* [[Deangelo Perkins]]
=== My Other A-Spec Characters ===
* [[Eve Grenville]]
** Alexmoromantic
* [[Tilly Harrell]]
** Divisexual
** Apresromantic
* [[Éva Bakó]]
** Apothi AroAce
* [[Quin Collingwood]]
** Omniasexual
* [[Dax Sheppard]]
** Cupiosensual
* [[Travis Graves]]
** Atomosexual
* [[Ryan McNiven]]
** Inataromantic
* [[Della Alvalle]]
** Apothisexual
** Anattractional
* [[Ace Alvalle]]
** Anaevague
** Aplatonic
** Anattractional
* [[Julia Aiza Villa]]
** Aplatonic
* [[Finn Miller]]
** Ansexual
* [[Luna Al-Hashim]]
** Apressensual
* [[Isabelle Bellamy]]
** Cupioromanticflux
* [[Höllenhund]]
** Fraysexual
** Apothiromantic
* [[Xenia Megalos]]
** Aegosexual
* [[Angel Ashworth]]
** Minlutter
*[[Júlio César Carvalho Silva]]
**Demiromantic
**Demisexual
=== My Other Fia/Fin Attracted Characters ===
* [[Luna Al-Hashim]]
** Abrofem
=== My Other Mia/Min Attracted Characters ===
* [[Robin Hartell]]
** Torstellic
* [[Terry Fan]]
** Agenilian
* [[Quin Collingwood]]
** Pansyic
* [[Angel Ashworth]]
** Minlutter
=== My Unlabeled Queer Characters ===
* [[Aqua Jackson]]
** Orientationless
* [[Book Janssen]]
* [[Tara Simen]]
* [[Bindy Abney]]
** Orientationless
* [[Monarhy Flitrabbow]]
* [[Cedardrop]]
* [[Chris Mullane]]
* [[Micah Aung]]
* [[Erin Berkowitz]]
* [[Gio Soto]]
37b048ea5e1ba457c227a9ca994377a09bc14f94
Kurt Hummel
0
137
298
293
2023-10-15T18:49:36Z
CheSnail
2
wikitext
text/x-wiki
[[File:Kurt Hummel.png|331x331px|right|frameless]]
'''Kurt Elizabeth Hummel''' is a gay character from the musical comedy-drama series, ''Glee''.
He is a major character in the show. He is played by Chris Colfer. He first appeared in the episode ''Pilot'', and his last appearance was in ''Dreams Come True''.
==Biography==
Kurt is closeted until he comes out to Mercedes and eventually his father. He had a crush on Finn and tried to pursue him, despite Finn being straight. He set up his father with Finn's mother for the sake of bringing him closer to Finn. In season two, he meets [[Blaine Anderson]] and falls for him at first sight. After being the target of bullying, mostly from [[Dave Karofsky]], he transfers to Dalton Academy out of fear for his life. He and Blaine pursue a relationship in ''Original Song''.
His relationship with Blaine goes through several obstacles, including Kurt flirting with another guy and Blaine having an affair while Kurt is in New York. They manage to recover from their past issues and get engage in ''Love, Love, Love''. The break up again before ''Loser Like Me'', before getting back together in ''A Wedding''.
==Personality==
Kurt has a very high standard for himself.
In the beginning of the show, he appears somewhat superficial and obsessed with the latest fashions and his hair. While many assume him to be a snob due to his behavior, it is simply a mask he wears to hide his insecurities and fears.
He is very smart and has a quick-witted sense of humor, while also using intelligent vocabulary. He can also be manipulative at times, once tricking Rachel into dressing more like the end-of-movie Sandy from ''Grease'' to win over Finn's affection, knowing that Finn is attracted to the opposite look.
A trait that he and his father have in common is that they both try their best to keep strong. He is very lonely and because of his loneliness, his romantic interests in certain boys can be unsettling and intense. When he does develop a crush, he seems to fall hard.
Despite his superficial exterior, he often prioritizes those he cares about more than himself, especially when it comes to his father. He can be a diva at times, but he deeply cares for his fellow Glee Club members.
He has a tendency to lash out and get defensive under pressure. He's ambitious, but always generous enough to appreciate real talent. He is very good at keeping secrets as well. He is shown to be caring to others, even those who he isn't close with.
He has a strong "family first" mentality and is an extremely forgiving person.
==Identity==
Kurt comes out as gay to Mercedes during the episode ''Acafellas'', and to his dad in the episode ''Preggars''.
===Reception===
Kurt Hummel is often hailed as breakthrough representation, however some feel as though he's stereotypical and is harmful representation for gay men.<ref>[https://archive.ph/AER3b https://www.theguardian.com/tv-and-radio/tvandradioblog/2011/mar/15/kurt-hummel-glee-gay]</ref>
==Gallery==
<gallery>
File:Kurt Hummel 2.png
File:Kurt Hummel and Blaine Anderson.png
File:Kurt Hummel and Blaine Anderson 2.png
File:Kurt Hummel 3.png
File:Kurt Hummel and Blaine Anderson 3.png
File:Kurt Hummel 4.png
File:Kurt Hummel 5.png
File:Kurt Hummel 6.png
</gallery>
==Trivia==
*Kurt was the first openly gay character in ''Glee''.
*Kurt's name comes from the character "Kurt von Trapp" from ''The Sound of Music'' and the Hummel collector dolls with rosy cheeks.
==See Also==
*[https://glee.fandom.com/wiki/Kurt_Hummel Kurt Hummel] on the ''Glee'' FANDOM Wiki
==Tropes==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/CampGay Camp Gay]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetKey Closet Key]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/QueerCharacterQueerActor Queer Character, Queer Actor]
* [http://tvtropes.org/pmwiki/pmwiki.php/Main/TransparentCloset Transparent Closet]
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Glee Characters]]
[[Category:Man Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
0316fffe87cfddfb8686bf2272fa9b1dc0d6e6e9
299
298
2023-10-15T19:39:04Z
CheSnail
2
wikitext
text/x-wiki
[[File:Kurt Hummel.png|331x331px|right|frameless]]
'''Kurt Elizabeth Hummel''' is a gay character from the musical comedy-drama series, ''Glee''.
He is a major character in the show. He is played by Chris Colfer. He first appeared in the episode ''Pilot'', and his last appearance was in ''Dreams Come True''.
==Biography==
Kurt is closeted until he comes out to Mercedes and eventually his father. He had a crush on Finn and tried to pursue him, despite Finn being straight. He set up his father with Finn's mother for the sake of bringing him closer to Finn. In season two, he meets [[Blaine Anderson]] and falls for him at first sight. After being the target of bullying, mostly from [[Dave Karofsky]], he transfers to Dalton Academy out of fear for his life. He and Blaine pursue a relationship in ''Original Song''.
His relationship with Blaine goes through several obstacles, including Kurt flirting with another guy and Blaine having an affair while Kurt is in New York. They manage to recover from their past issues and get engage in ''Love, Love, Love''. The break up again before ''Loser Like Me'', before getting back together in ''A Wedding''.
==Personality==
Kurt has a very high standard for himself.
In the beginning of the show, he appears somewhat superficial and obsessed with the latest fashions and his hair. While many assume him to be a snob due to his behavior, it is simply a mask he wears to hide his insecurities and fears.
He is very smart and has a quick-witted sense of humor, while also using intelligent vocabulary. He can also be manipulative at times, once tricking Rachel into dressing more like the end-of-movie Sandy from ''Grease'' to win over Finn's affection, knowing that Finn is attracted to the opposite look.
A trait that he and his father have in common is that they both try their best to keep strong. He is very lonely and because of his loneliness, his romantic interests in certain boys can be unsettling and intense. When he does develop a crush, he seems to fall hard.
Despite his superficial exterior, he often prioritizes those he cares about more than himself, especially when it comes to his father. He can be a diva at times, but he deeply cares for his fellow Glee Club members.
He has a tendency to lash out and get defensive under pressure. He's ambitious, but always generous enough to appreciate real talent. He is very good at keeping secrets as well. He is shown to be caring to others, even those who he isn't close with.
He has a strong "family first" mentality and is an extremely forgiving person.
==Identity==
Kurt comes out as gay to Mercedes during the episode ''Acafellas'', and to his dad in the episode ''Preggars''.
===Reception===
Kurt Hummel is often hailed as breakthrough representation, however some feel as though he's stereotypical and is harmful representation for gay men.<ref>[https://archive.ph/AER3b https://www.theguardian.com/tv-and-radio/tvandradioblog/2011/mar/15/kurt-hummel-glee-gay]</ref>
==Gallery==
<gallery>
File:Kurt Hummel 2.png
File:Kurt Hummel and Blaine Anderson.png
File:Kurt Hummel and Blaine Anderson 2.png
File:Kurt Hummel 3.png
File:Kurt Hummel and Blaine Anderson 3.png
File:Kurt Hummel 4.png
File:Kurt Hummel 5.png
File:Kurt Hummel 6.png
</gallery>
==Trivia==
*Kurt was the first openly gay character in ''Glee''.
*Kurt's name comes from the character "Kurt von Trapp" from ''The Sound of Music'' and the Hummel collector dolls with rosy cheeks.
==See Also==
*[https://glee.fandom.com/wiki/Kurt_Hummel Kurt Hummel] on the ''Glee'' FANDOM Wiki
==Tropes==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/CampGay Camp Gay]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetKey Closet Key]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/PerformanceArtist Performance Artist]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/QueerCharacterQueerActor Queer Character, Queer Actor]
* [http://tvtropes.org/pmwiki/pmwiki.php/Main/TransparentCloset Transparent Closet]
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Glee Characters]]
[[Category:Man Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
d068fd34a7bcd9fbc1d752a30f9bb6c4c42f2a55
File:Blaine Anderson.png
6
143
300
2023-10-15T20:05:17Z
CheSnail
2
wikitext
text/x-wiki
Blaine Anderson from Glee
b34d90bed6ad5a65b5cf6dfbe405138759fd7109
File:Blaine Anderson 2.png
6
144
301
2023-10-15T20:06:13Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Blaine Anderson and Dave Karofsky.png
6
145
302
2023-10-15T20:06:35Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Blaine Anderson 3.png
6
146
303
2023-10-15T20:06:59Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Blaine Anderson and Kurt Hummel.png
6
147
304
2023-10-15T20:07:20Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Blaine Anderson and Kurt Hummel 2.png
6
148
305
2023-10-15T20:07:44Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Blaine Anderson 4.png
6
149
306
2023-10-15T20:08:04Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Blaine Anderson 5.png
6
150
307
2023-10-15T20:08:24Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Blaine Anderson
0
151
308
2023-10-15T20:13:54Z
CheSnail
2
Created page with "[[File:Blaine Anderson.png|right|frameless|289x289px]] '''Blaine Devon Anderson''' is a gay character from the musical comedy-drama series, ''Glee''. He is a major character on the show. He is played by Darren Criss. He first appeared in the episode ''Never Been Kissed'', and his last appearance was in ''Dreams Come True''. He was a recurring character when introduced in season two, but got promoted to a main character in season three onward. ==Biography== Blaine attend..."
wikitext
text/x-wiki
[[File:Blaine Anderson.png|right|frameless|289x289px]]
'''Blaine Devon Anderson''' is a gay character from the musical comedy-drama series, ''Glee''.
He is a major character on the show. He is played by Darren Criss. He first appeared in the episode ''Never Been Kissed'', and his last appearance was in ''Dreams Come True''. He was a recurring character when introduced in season two, but got promoted to a main character in season three onward.
==Biography==
Blaine attended Dalton Academy and was the lead singer for the Dalton Academy Warblers, but later transferred to William McKinley High School in the beginning of season three.
He got married to [[Kurt Hummel]] during the episode, ''A Wedding'', despite his infidelity in ''The Break Up'' and breaking things off before season six, after proposing to Kurt in season five.
He got accepted into the New York Academy of the Dramatic Arts (NYADA) and graduated from William McKinley High School in ''New Directions''. He was cut from NYADA sometime before season six due to his grades slipping because of his depressed state after he and Kurt called off their engagement. He started dating [[Dave Karofsky]] afterwards.
He was working at Dalton Academy as the coach of the Warblers until Dalton Academy burned to the ground, joining New Directions.
==Personality==
When he first appeared, Blaine is portrayed as charming with a confident exterior. He is very composed and shows a lot of self-control, although there are times where he acts impulsively. Other times, he is shown to have a temper. He's increasingly portrayed as someone who values the idea of "fitting in."
After transferring to William McKinley High School, he is shown to be needier and attention-seeking. Despite his flaws, he remains a very passionate and caring young man.
He shows the more campy, fun side of himself during season four and loosens up from his composed, reserved self that he held when he was attending Dalton Academy. He grows more dramatic as well.
==Identity==
Blaine is openly gay when he is first introduced.
===Reception===
Blaine is a very divisive character when it comes to audience reception, and not just for his sexuality. Some see him as a copy of Kurt as the show goes on, while others believe he is positive gay representation.<ref>[https://archive.ph/kuQC0 https://deconstructingglee.com/2011/10/11/glees-blaine-anderson-and-bowties-and-passing/]</ref><ref>[https://archive.ph/7OFdX https://itsdiend.wordpress.com/2012/09/30/lets-talk-about-blaine-anderson/]</ref>
==Gallery==
<gallery>
File:Blaine Anderson 2.png
File:Blaine Anderson and Dave Karofsky.png
File:Blaine Anderson 3.png
File:Blaine Anderson and Kurt Hummel.png
File:Blaine Anderson and Kurt Hummel 2.png
File:Blaine Anderson 4.png
File:Blaine Anderson 5.png
</gallery>
==Trivia==
*Blaine uses raspberry hair gel.
*Blaine reads ''Star Wars'' fanfic, particularly to help Sam fall asleep at night.
==See Also==
*[https://glee.fandom.com/wiki/Blaine_Anderson Blaine Anderson] on the ''Glee'' FANDOM Wiki
==Tropes==
*[https://tvtropes.org/pmwiki/pmwiki.php/Main/MentorInQueerness Mentor in Queerness]
==Sources==
<references />
[[Category:Gay Characters]]
[[Category:Glee Characters]]
[[Category:Man Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
715179fbb00018877d2db48ef0d12eb21bb4d429
File:Charlie Spring webcomic.png
6
152
312
2023-10-23T13:33:40Z
CheSnail
2
wikitext
text/x-wiki
Charlie Spring from the Heartstopper webcomic
10ac56c7419fe12f41134c9c387a1c0b31f1c252
File:Charlie Spring webcomic 2.png
6
153
313
2023-10-23T13:35:29Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Charlie Spring webcomic 3.png
6
154
314
2023-10-23T13:36:17Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Charlie Spring and Tori Spring webcomic.png
6
155
315
2023-10-23T13:36:50Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Charlie Spring (webcomic)
0
156
316
2023-10-23T13:38:59Z
CheSnail
2
Created page with "[[File:Charlie Spring webcomic.png|right|frameless|200x200px]] '''Charles (Charlie) Francis Spring''' is a gay character from the young adult webcomic and graphic novel, ''Heartstopper''. He is one of the two main protagonist of the comic. == Biography == Charlie lives at home with his parents, older sister and younger brother. He suffers from anorexia, depression and OCD. As a result of being outed, bullied and in a toxic relationship with [[Ben Hope]], he has a lot..."
wikitext
text/x-wiki
[[File:Charlie Spring webcomic.png|right|frameless|200x200px]]
'''Charles (Charlie) Francis Spring''' is a gay character from the young adult webcomic and graphic novel, ''Heartstopper''.
He is one of the two main protagonist of the comic.
== Biography ==
Charlie lives at home with his parents, older sister and younger brother. He suffers from anorexia, depression and OCD.
As a result of being outed, bullied and in a toxic relationship with [[Ben Hope]], he has a lot of trauma that he refuses to acknowledge. As his mental state gets worse, he is eventually admitted into a psychiatric hospital.
== Personality ==
Charlie has a tendency to overthink things. He is very sensitive and has a habit for apologizing a lot, though as the series goes on, the latter is shown to improve.
Many, including himself, describe him as a nerd. He loves reading, dogs and playing the drums. He has posters for ''The Iliad'' and ''Brideshead Revisited'' hanging on his wall.
He often masks how he feels in order to make others feel happy. He is incredibly empathetic. [[Tori Spring]] describes him as being nice, which is a characteristics she believes is underrated and taken advantage of.
== Identity ==
Charlie is a self described "gay nerd" and is also the boyfriend of [[Nick Nelson]].
== Gallery ==
<gallery>
File:Charlie Spring webcomic 2.png
File:Charlie Spring webcomic 3.png
File:Charlie Spring and Tori Spring webcomic.png
</gallery>
== Trivia ==
* Charlie is left-handed.
* Charlie was originally Ravenclaw, however ''Heartstopper'' creator Alice Oseman changed it to Slytherin.
* Charlie's MBTI is ISTP.
* Charlie is half-Spanish from his dad's side.
* Charlie started playing the drums at nine years old.
* Charlie is always cold.
* Charlie's favorite film is ''Moonlight''.
* Charlie's Instagram account is @cfspring.
* Charlie's blood type is O-negative.
* Charlie's favorite bands are Muse, The Strokes and Best Coast.
== See Also ==
* [https://heartstopperwebtoon.fandom.com/wiki/Charlie_Spring Charlie Spring] on ''Heartstopper'' FANDOM Wiki
* [https://aliceoseman.fandom.com/wiki/Charlie_Spring Charlie Spring] on Alice Oseman Universe FANDOM Wiki
== Tropes ==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetKey Closet Key]
[[Category:Gay Characters]]
[[Category:Heartstopper Characters]]
[[Category:Man Characters]]
[[Category:Main Characters]]
[[Category:Comic Characters]]
caf39937644918e02376b3738302dfc0e474c0c7
Category:Heartstopper Characters
14
157
317
2023-10-23T13:40:14Z
CheSnail
2
Created page with "This category is for characters that are from the young adult romantic drama, ''Heartstopper''."
wikitext
text/x-wiki
This category is for characters that are from the young adult romantic drama, ''Heartstopper''.
b8560c90a03629a9d4dc7f128c814e98fef347ea
Category:Comic Characters
14
158
318
2023-10-23T13:40:49Z
CheSnail
2
Created page with "This category is for all characters that come from comic series. [[Category:Characters by Media]]"
wikitext
text/x-wiki
This category is for all characters that come from comic series.
[[Category:Characters by Media]]
17302f27bfb271cf21221fdb1dcdf91cb8d4e7f4
File:Charlie Spring TV.png
6
159
320
2023-10-23T19:04:38Z
CheSnail
2
wikitext
text/x-wiki
Charlie Spring from the TV show Heartstopper
b62380fbd0bef9429476f0b457bec2a1db156c10
Charlie Spring (TV)
0
160
321
2023-10-23T19:05:31Z
CheSnail
2
Created page with "[[File:Charlie Spring TV.png|right|frameless|216x216px]] '''Charles (Charlie) Francis Spring''' is a gay character from the romantic drama series, ''Heartstopper''. He is one of the two main protagonists in the show. He is played by Joe Locke. He first appeared in the episode ''Meet''. == Biography == Charlie lives at home with his parents and older sister. During the Paris Trip, it becomes increasingly clear that he has a lot of difficulty eating. As a result of bein..."
wikitext
text/x-wiki
[[File:Charlie Spring TV.png|right|frameless|216x216px]]
'''Charles (Charlie) Francis Spring''' is a gay character from the romantic drama series, ''Heartstopper''.
He is one of the two main protagonists in the show. He is played by Joe Locke. He first appeared in the episode ''Meet''.
== Biography ==
Charlie lives at home with his parents and older sister. During the Paris Trip, it becomes increasingly clear that he has a lot of difficulty eating.
As a result of being outed, bullied and in a toxic relationship with [[Ben Hope]], he has a lot of trauma that he refuses to acknowledge.
== Personality ==
Charlie has a tendency to overthink things. He is very sensitive and has a habit for apologizing a lot, though as the series goes on, the latter is shown to improve.
Many describe him as a nerd. He loves reading, dogs and playing the drums.
He often masks how he feels in order to make others feel happy. He is incredibly empathetic. [[Tori Spring]] describes him as being nice, which is a characteristics she believes is underrated and taken advantage of.
== Identity ==
Charlie is described as a "gay nerd" by his boyfriend, [[Nick Nelson]].
== Trivia ==
* Charlie is left-handed.
* Charlie was originally Ravenclaw, however ''Heartstopper'' creator Alice Oseman changed it to Slytherin.
* Charlie's MBTI is ISTP.
* Charlie is half-Spanish from his dad's side.
* Charlie started playing the drums at nine years old.
* Charlie is always cold.
* Charlie's favorite film is ''Moonlight''.
* Charlie's Instagram account is @charlie_spr1.
* Charlie's blood type is O-negative.
* Charlie's favorite bands are Muse, The Strokes and Best Coast.
== See Also ==
* [https://aliceoseman.fandom.com/wiki/Charlie_Spring Charlie Spring] on Alice Oseman Universe FANDOM Wiki
== Tropes ==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetKey Closet Key]
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/QueerCharacterQueerActor Queer Character, Queer Actor]
[[Category:Gay Characters]]
[[Category:Heartstopper Characters]]
[[Category:Man Characters]]
[[Category:Main Characters]]
[[Category:TV Show Characters]]
2a621a3c35a09f851b3cf7b7d698069eb845fc19
Hikaru Sulu
0
161
324
2023-10-30T14:22:48Z
CheSnail
2
draft to finish up later
wikitext
text/x-wiki
'''Hikaru Sulu''' is a gay character from the science fiction franchise, ''Star Trek''.
He is played by John Cho. He appears in the "Kelvin-timeline" films, which include ''Star Trek'', ''Star Trek Into Darkness'', and ''Star Trek Beyond''.
== Biography ==
Lieutenant Hikaru Sulu was a 23rd century Human Starfleet officer. When he was a cadet, he served as a helmsman on the USS Enterprise under the command of Christopher Pike. He was involved in the defeat of a Romulan bent on obliterating the entire United Federation of Planets. As a result, he continued to serve as helmsman on the Enterprise and the third officer to James T. Kirk.
The following year, Sulu and the crew of the Enterprise faced an enhanced Human from the late 20th century who had superior strength and intellect. The crew managed to stop him, setting out on their five-year mission after his defeat.
During the Enterprise's five-year mission, Sulu was present when the ship was destroyed by Swarm ships and left them stranded on Altamid. He, the crew and Jaylah managed to leave the planet after repairing the USS Franklin and traveled to Starbase Yorktown to stop Krall's revenge plans. Afterwards, Sulu continued to serve under Kirk and the crew continued their five-year mission.
== Personality ==
Sulu is skilled in hand-to-hand combat and specializes in fencing. He is shown to have great leadership skills.
== Identity ==
Sulu's sexuality is revealed in ''Star Trek Beyond'', after the ship stops at Starbase Yorktown. Kirk watches him run over to another man and a little girl, who are revealed to be his husband and daughter.
The writers of ''Star Trek Beyond'' intended Sulu to be gay as a nod to George Takei, who played Sulu in ''The Original Series''. However, Takei diagreed with the idea and felt as though Gene Roddenberry intended Sulu to be straight, and that they should create a new gay character. Simon Pegg argued that, "I don't believe Gene Roddenberry's decision to make the prime timeline's Enterprise crew straight was an artistic one, more of a necessity of the time." Takei was nevertheless flattered by Pegg's decision and congratulated him.
=== Reception ===
While there were some fans who agreed with Takei, that the decision for Sulu to be gay went against Gene Roddenberry's vision and created a "paradox," others were excited to see explicitly labeled queer representation in ''Star Trek''.
== Gallery ==
<gallery>
Example.jpg
</gallery>
== See Also ==
* [https://memory-alpha.fandom.com/wiki/Hikaru_Sulu_(alternate_reality)#Appendices Hikaru Sulu] on the Memory Alpha FANDOM Wiki
* [https://memory-beta.fandom.com/wiki/Hikaru_Sulu_(Kelvin_timeline) Hikaru Sulu] on the Memory Beta FANDOM Wiki
== Tropes ==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/AdaptationalSexuality Adaptional Sexuality]
== Sources ==
<references />
[[Category:Gay Characters]]
[[Category:Star Trek Characters]]
[[Category:Man Characters]]
[[Category:Minor Characters]]
[[Category:Film Characters]]
a5ae773929ab0075efe046e64f2ade6817963168
328
324
2023-10-31T01:52:40Z
CheSnail
2
wikitext
text/x-wiki
[[File:Hikaru Sulu.png|right|frameless|249x249px]]
'''Hikaru Sulu''' is a gay character from the science fiction franchise, ''Star Trek''.
He is played by John Cho. He appears in the "Kelvin-timeline" films, which include ''Star Trek'', ''Star Trek Into Darkness'', and ''Star Trek Beyond''.
== Biography ==
Lieutenant Hikaru Sulu was a 23rd century Human Starfleet officer. When he was a cadet, he served as a helmsman on the USS Enterprise under the command of Christopher Pike. He was involved in the defeat of a Romulan bent on obliterating the entire United Federation of Planets. As a result, he continued to serve as helmsman on the Enterprise and the third officer to James T. Kirk.
The following year, Sulu and the crew of the Enterprise faced an enhanced Human from the late 20th century who had superior strength and intellect. The crew managed to stop him, setting out on their five-year mission after his defeat.
During the Enterprise's five-year mission, Sulu was present when the ship was destroyed by Swarm ships and left them stranded on Altamid. He, the crew and Jaylah managed to leave the planet after repairing the USS Franklin and traveled to Starbase Yorktown to stop Krall's revenge plans. Afterwards, Sulu continued to serve under Kirk and the crew continued their five-year mission.
== Personality ==
Sulu is skilled in hand-to-hand combat and specializes in fencing. He is shown to have great leadership skills.
== Identity ==
Sulu's sexuality is revealed in ''Star Trek Beyond'', after the ship stops at Starbase Yorktown. Kirk watches him run over to another man and a little girl, who are revealed to be his husband and daughter.
The writers of ''Star Trek Beyond'' intended Sulu to be gay as a nod to George Takei, who played Sulu in ''The Original Series''. However, Takei diagreed with the idea and felt as though Gene Roddenberry intended Sulu to be straight, and that they should create a new gay character.<ref>[https://archive.ph/Szoc2 https://www.hollywoodreporter.com/news/general-news/george-takei-reacts-gay-sulu-909154/]</ref> Simon Pegg argued that, "I don't believe Gene Roddenberry's decision to make the prime timeline's Enterprise crew straight was an artistic one, more of a necessity of the time."<ref>[https://archive.ph/0G3wp https://www.theguardian.com/film/2016/jul/08/simon-pegg-defends-gay-sulu-after-george-takei-criticism]</ref> Takei was nevertheless flattered by Pegg's decision and congratulated him.<ref>[https://archive.ph/GDNRJ https://www.facebook.com/georgehtakei/posts/1622484171114363#]</ref>
=== Reception ===
While there were some fans who agreed with Takei, that the decision for Sulu to be gay went against Gene Roddenberry's vision and created a "paradox," others were excited to see explicitly labeled queer representation in ''Star Trek''.<ref>[https://archive.ph/PkUwI https://neoteotihuacan.medium.com/the-gay-sulu-paradox-ce352da419fa]</ref><ref>[https://archive.ph/kCKRw https://www.tor.com/2016/07/07/star-trek-beyond-sulu-lgbt/]</ref>
== Gallery ==
<gallery>
File:Hikaru Sulu 2.png
File:Hikaru Sulu 3.png
</gallery>
== See Also ==
* [https://memory-alpha.fandom.com/wiki/Hikaru_Sulu_(alternate_reality)#Appendices Hikaru Sulu] on the Memory Alpha FANDOM Wiki
* [https://memory-beta.fandom.com/wiki/Hikaru_Sulu_(Kelvin_timeline) Hikaru Sulu] on the Memory Beta FANDOM Wiki
== Tropes ==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/AdaptationalSexuality Adaptional Sexuality]
== Sources ==
<references />
[[Category:Gay Characters]]
[[Category:Star Trek Characters]]
[[Category:Man Characters]]
[[Category:Minor Characters]]
[[Category:Film Characters]]
97910fc7d8f9dba77d5e35421db5e93b7c2e7322
File:Hikaru Sulu.png
6
162
325
2023-10-31T01:42:06Z
CheSnail
2
wikitext
text/x-wiki
Hikaru Sulu from Star Trek
a36acac7d276e049332b618a9f7709efa5f2125c
File:Hikaru Sulu 2.png
6
163
326
2023-10-31T01:43:41Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Hikaru Sulu 3.png
6
164
327
2023-10-31T01:44:22Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Category:Star Trek Characters
14
165
329
2023-10-31T01:53:29Z
CheSnail
2
Created page with "This category is for characters that are from the sci-fi franchise, ''Star Trek''."
wikitext
text/x-wiki
This category is for characters that are from the sci-fi franchise, ''Star Trek''.
ba2b24f37d545ea10ba2b1e57f5a07403a163f91
Category:Film Characters
14
166
330
2023-10-31T01:54:20Z
CheSnail
2
Created page with "This category is for all characters that come from film. [[Category:Characters by Media]]"
wikitext
text/x-wiki
This category is for all characters that come from film.
[[Category:Characters by Media]]
151932f435ec604b8c36378b452d0047a8cc9ba0
Editing Guide
0
19
332
271
2023-10-31T02:44:47Z
CheSnail
2
Protected "[[Editing Guide]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
== General Editing ==
Pages should follow standard wiki formatting, which means:
# Written in formal American English.
# Do not plagiarize.
# Bold text must only be used in the beginning of the article/section of an article for the name of the term and any alternate spellings.
# Italicized text must only be used for titles of books, shows, games or other media.
# Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
# One space/line between paragraphs.
# Add links to any other terms used in the article.
# Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
# Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
# With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
# Do not address the reader.
# Do not add "WIP" or author's notes.
Additionally, personal bias should not be in these articles.
=== Titles ===
Some characters have only a first name and there may be more than one character with the same first and last name, this case, title the page "Character (Media)".
=== Categories ===
If a character identifies with a microlabel, put them in the broad category for that label. For example, if a character is cupiosexual, then they would be put into the "Ace-Spec Characters" category. This is to keep the wiki less cluttered and to have information be easier to find.
== Sourcing ==
Links should be archived, this is so that we do not lose any information. https://archive.md/ is a viable place to archive sources, but there are other cites that can be used for archiving sources.
[[Category:Help]] [[Category:Important]]
6bbacc19f136216b0e9ad872e22a848f06ab1583
Main Page
0
1
333
262
2023-10-31T02:45:05Z
CheSnail
2
Protected "[[Main Page]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
__NOTOC__
== Welcome to {{SITENAME}}! ==
This is a resource for all canonically LGBTQ+ characters throughout fiction.
== Characters by Identity ==
[[:Category:Characters by Identity|Characters by Identity]]
<gallery>
Gay flag.png|[[:Category:Gay Characters|Gay Characters]]
Lesbian flag.png|[[:Category:Lesbian Characters|Lesbian Characters]]
Gay Man flag.png|[[:Category:Gay Man Characters|Gay Man Characters]]
Bi flag.png|[[:Category:Bi Characters|Bi Characters]]
Trans flag.png|[[:Category:Trans Characters|Trans Characters]]
Aroace flag.png|[[:Category:Aroace Characters|Aroace Characters]]
Pan flag.png|[[:Category:Pan Characters|Pan Characters]]
Non-Binary flag.png|[[:Category:Non-Binary Characters|Non-Binary Characters]]
</gallery>
[[:Category:Characters by Media|Characters by Media]]
== For Contributes ==
Look into these articles if you're looking to help out with the wiki:
* [[Rules]]
* [[Editing Guide]]
* [[Guide:Character]]
fc4789b2f24fce051bdd1e18c2e5ed3473650594
Rules
0
18
334
270
2023-10-31T02:45:24Z
CheSnail
2
Protected "[[Rules]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
== Code of Conduct ==
# Keep personal bias out of the articles you're editing. Do not make any comments about your personal dislike of a character or your opinion about a certain identity.
# Articles should be written in a standard wiki format. This means:
## Written in formal American English.
## Do not plagiarize.
## Bold text must only be used in the beginning of the article for the character's name.
## Italicized text must only be used for titles of books, shows, games or other media.
## Text must be readable by text-to-speech programs, which means no typing quirks or special fonts.
## One space/line between paragraphs.
## Add links to any other characters included on the wiki used in the article.
## Dates should follow either format: MONTH DD, YYYY or DD of MMM, YYYY.
## Do not write in first person or second person, no "I" or "you," except when directly quoting someone.
## With the exception of dates, numbers twelve and less should be spelled out, while numbers 13 and above should be written with numerals.
## Do not address the reader.
## Do not add "WIP" or author's notes.
# Do not impersonate another user.
# No troll or satirical edits.
# Do not post false or misleading information.
# Do not post spam.
# Do not make queerphobic, ableist, racist, or sexist comments.
== Content Policy ==
=== Allowed Content ===
* Characters confirmed to be queer within the work itself.
* Characters confirmed to be queer by the creator outside of the work.
* Characters confirmed to be queer by the actor of the character outside of the work.
* Characters confirmed to be queer by a writer outside of the work.
** However, writers can have conflicting/different ideas about a character, if this is the case, include which writer confirmed what.
** All characters confirmed outside of the work itself must be categorized under "Word of Gay".
* Web characters, as long as they are fictional.
* You may add your original characters '''only''' if you have them/are planning to have them in a serious work, such as a book, webseries or comic. This does not extend to fan-characters.
=== Prohibited Content ===
* Headcanons, as these are up to interpretation.
* Real individuals, this includes fictionalized versions of real individuals, such as depictions of Elton John.
* Queercoded characters, as these characters are not meant to be explicitly queer.
* Fan-characters. Original characters from an existing media are not allowed.
[[Category:Help]] [[Category:Important]]
807a6a02fee2cf92ce9ae52746d67dc9b685d191
Guide:Character
0
98
335
283
2023-10-31T02:45:43Z
CheSnail
2
Protected "[[Guide:Character]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
wikitext
text/x-wiki
The article should begin with a picture of the character or a picture of the media they are from if there is no official appearance for them.
(Character) is a (label/labels) character from (media).
In the second paragraph, describe their role in the story, the actor that portrays them, the first and last episode they appear in, and any other miscellaneous information that feels important/significant.
== Biography ==
Here, include a brief description of the character's life and how their story plays out in the media they're from.
== Appearance ==
'''Use this header if the character is from a book/has no official visual reference of their appearance.'''
Here, describe what the character looks like with the details that are available.
== Personality ==
Here, discuss the character's personality and what they are like within the work.
== Identity ==
Here, explore how the identity was revealed and how it is handled in the work itself. If the identity was revealed outside of the work, discuss how it was revealed and which of the individuals involved in the work spoke about it.
=== Reception ===
In this section, discuss the general and fan response to the character in relation to their identity.
== Gallery ==
Here, you can include any other pictures of the character that feel significant. This can include promotional material, screencaps from the show, or images of the character with the flag of their identity.
<gallery>
Example.jpg
</gallery>
== Trivia ==
* Here, list any trivia about the character.
== See Also ==
* Include a link to any official information about the character
== Tropes ==
* If the character falls into any tropes
* Include them here in a bulleted list
* You should also include a link to more information about the trope itself
[[List of Tropes]] page may be used as a reference.
== Sources ==
This is where your sources will be.
[[Category:Guides]] [[Category:Help]] [[Category:Important]]
4cbbfc971c80661120bb52bf85f3d0eb09af7711
File:Connor McKinley.png
6
167
336
2023-11-10T02:09:47Z
CheSnail
2
wikitext
text/x-wiki
Connor McKinley from Book of Mormon
873d2092082466fe50dc574831fb89565bbfaaf1
File:Connor McKinley 2.png
6
168
337
2023-11-10T02:10:57Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Connor McKinley 3.png
6
169
338
2023-11-10T02:11:21Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Connor McKinley
0
170
339
2023-11-10T02:15:24Z
CheSnail
2
Created page with "[[File:Connor McKinley.png|right|frameless|200x200px]] '''Connor McKinley''' is a gay character from the musical comedy, ''Book of Mormon''. He was originally played by Rory O'Malley, but has had many different portrayals since the musical's debut in 2011. == Biography == Elder Connor McKinley is one of the Mormon missionaries stationed in Uganda. He meets Elder Price and Elder Cunningham after the two faced many issues setting to where they would be staying, in which..."
wikitext
text/x-wiki
[[File:Connor McKinley.png|right|frameless|200x200px]]
'''Connor McKinley''' is a gay character from the musical comedy, ''Book of Mormon''.
He was originally played by Rory O'Malley, but has had many different portrayals since the musical's debut in 2011.
== Biography ==
Elder Connor McKinley is one of the Mormon missionaries stationed in Uganda. He meets Elder Price and Elder Cunningham after the two faced many issues setting to where they would be staying, in which Elder McKinley tells them they can simply "turn off" their bad emotions.
By the end of the musical, he learns that there is no such thing as a "bad emotion" and that it's healthier to allow himself to let all his feelings out.
== Personality ==
Elder McKinley is very bubbly and energetic, always happy to meet new people.
== Identity ==
Elder McKinley knew he was gay since he was in fifth grade, when he developed a crush on a friend named Steve Blade. He would push these feelings down and pretend he could "turn them off."<ref>[https://archive.ph/RcnBi https://genius.com/Original-broadway-cast-of-the-book-of-mormon-turn-it-off-lyrics]</ref>
== Gallery ==
<gallery>
File:Connor McKinley 3.png
File:Connor McKinley 2.png
</gallery>
== See Also ==
* [https://en.wikipedia.org/wiki/The_Book_of_Mormon_(musical) Book of Mormon] on Wikipedia
* [https://theatre.fandom.com/wiki/The_Book_of_Mormon_(Broadway) Book of Mormon] on the Theatre FANDOM Wiki
== Tropes ==
* [http://tvtropes.org/pmwiki/pmwiki.php/Main/FlamingDevil Flaming Devil] (some productions feature Elder McKinley in "Spooky Mormon Hell Dream" as a devil)
== Sources ==
<references />
[[Category:Gay Characters]]
[[Category:Book of Mormon Characters]]
[[Category:Man Characters]]
[[Category:Minor Characters]]
[[Category:Theatrical Characters]]
e9a165d7a18aab2cebdce5bf60af43986ad7beb6
Category:Book of Mormon Characters
14
171
340
2023-11-10T02:16:42Z
CheSnail
2
Created page with "This category is for characters that are from the musical comedy, ''Book of Mormon''."
wikitext
text/x-wiki
This category is for characters that are from the musical comedy, ''Book of Mormon''.
c6fa36d16d7d583e3c640dfc24b4dbc83b426834
Category:Theatrical Characters
14
172
341
2023-11-10T02:17:06Z
CheSnail
2
Created page with "This category is for all characters that come from theatre, such as plays and musicals."
wikitext
text/x-wiki
This category is for all characters that come from theatre, such as plays and musicals.
f743a1aba5a6ae0012199814afb50a553cdcb3b9
File:Whizzer Brown.png
6
173
344
2023-11-14T21:44:57Z
CheSnail
2
wikitext
text/x-wiki
Whizzer Brown from Falsettos
5baa463057dd660dfa0c3f53eaee972febac5528
File:Whizzer Brown and Marvin.png
6
174
345
2023-11-14T21:46:10Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Whizzer Brown and Marvin 2.png
6
175
346
2023-11-14T21:46:46Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Whizzer Brown and Marvin 3.png
6
176
347
2023-11-14T21:47:11Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
File:Michael's post about Whizzer Brown and Marvin.png
6
177
348
2023-11-14T21:48:00Z
CheSnail
2
wikitext
text/x-wiki
da39a3ee5e6b4b0d3255bfef95601890afd80709
Whizzer Brown
0
178
349
2023-11-14T21:51:47Z
CheSnail
2
Created page with "[[File:Whizzer Brown.png|right|frameless]] '''Whizzer Brown''' is a gay character from the sung-through musical, ''Falsettos'', and the one-act musical, ''In Trousers''. He is supporting character throughout ''In Trousers'', and a main character is ''Falsettos''. He was originally played by Stephen Bogardus, but has had many portrayals since the Broadway debut of ''Falsettos'' in 1992. == Biography == Whizzer is a half-Jewish openly gay man living in New York City thro..."
wikitext
text/x-wiki
[[File:Whizzer Brown.png|right|frameless]]
'''Whizzer Brown''' is a gay character from the sung-through musical, ''Falsettos'', and the one-act musical, ''In Trousers''.
He is supporting character throughout ''In Trousers'', and a main character is ''Falsettos''. He was originally played by Stephen Bogardus, but has had many portrayals since the Broadway debut of ''Falsettos'' in 1992.
== Biography ==
Whizzer is a half-Jewish openly gay man living in New York City through the 1970s and 1980s.
== Personality ==
Whizzer can be a bit argumentative, especially when it comes to [[Marvin]]. He can be described as a "sore loser" and a "quitter" as well.
== Identity ==
Whizzer is a gay man and in a relationship with Marvin, who he argues with about how long they've been together. Whizzer believes they've been together for nine months.<ref>[https://web.archive.org/web/20231114214910/https://genius.com/Christian-borle-and-andrew-rannells-thrill-of-first-love-lyrics https://genius.com/Christian-borle-and-andrew-rannells-thrill-of-first-love-lyrics]</ref>
== Gallery ==
<gallery>
File:Michael's post about Whizzer Brown and Marvin.png
File:Whizzer Brown and Marvin 3.png
File:Whizzer Brown and Marvin 2.png
File:Whizzer Brown and Marvin.png
</gallery>
== See Also ==
* [https://falsettos.fandom.com/wiki/Whizzer Whizzer Brown] on the ''Falsettos'' FANDOM Wiki
== Tropes ==
* [https://tvtropes.org/pmwiki/pmwiki.php/Main/ClosetKey Closet Key]
== Sources ==
<references />
[[Category:Gay Characters]]
[[Category:Falsettos Characters]]
[[Category:Man Characters]]
[[Category:Minor Characters]]
[[Category:Main Characters]]
[[Category:Theatrical Characters]]
4c40a7d7846cf13bd911a6e97d795984e6673485
Category:Falsettos Characters
14
179
350
2023-11-14T21:52:27Z
CheSnail
2
Created page with "This category is for characters that are from the sung-through musical, ''Falsettos''."
wikitext
text/x-wiki
This category is for characters that are from the sung-through musical, ''Falsettos''.
35460f687f3be582370ef46bcfb7d6e8a7067f03